Skip to Content
API Reference/v1/info/user

User Information

Description

This endpoint is used to provide the client the information of the owner user corresponding to the API token. This includes personal information, subscription status, and available search tokens left.

It is available at the following URL.

https://api.intelsentry.io/v1/info/user

Input Params

None.


HTTP Methods

  • GET: Used to retrieve the information of the user.

Example Request

GET https://api.intelsentry.io/v1/info/user Authorization: Bearer <token>

Example Response

HTTP/1.1 200 Content-Type: application/json { "email": "test@example.com", "full_name": "Example User", "subscription": "Researcher PRO", "subscription_begins": 1742763329000, "subscription_ends": 1742849729000, "searches_left": 1500 }

Note that timestamps for subscription_begins and subscription_ends are unix UTC timestamps in milliseconds. Moreover, searches_left indicates the amount of search tokens left at that point in time.


Status Codes


Status CodeDescription
200The user information was correctly returned
Last updated on