Get User Profile Information

Get User Profile Information

Retrieves the profile information for a specific user account, including basic details, login information, subscription status, usage limits, and organization data (if applicable).


HTTP Method and URL

GET {{host}}/api/v2/my/profile?user_type=ENTERPRISE_API


Authentication Requirements

Requires a valid user authentication token. Pass the token using the user-token variable in the request headers or environment.


Query Parameters

NameTypeRequiredDescription
user_typestringYesMust be set to ENTERPRISE_API.

Request Body

This endpoint does not require a request body.


Example Request

GET {{host}}/api/v2/my/profile?user_type=ENTERPRISE_API
Authorization: Bearer {USER-TOKEN}

Example Successful Response

{
  "id": 12345,
  "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "photo": null,
  "profile_id": 67890,
  "verified": 1,
  "guest": 0,
  "company": "Example Corp",
  "industry": "Technology",
  "job_title": "Developer",
  "email": "[email protected]",
  "salutation": "Mr.",
  "first_name": "John",
  "middle_name": "A.",
  "last_name": "Doe",
  "country": "US",
  "notification": 1,
  "subscription": {
    "plan": "Enterprise",
    "price": 1000,
    "billing_cycle": "annual"
  },
  "payment_method": null,
  "migration_status": "complete",
  "update_password": 0,
  "upload_limit": 10000,
  "upload_usage": 500,
  "verify_limit": 100,
  "verify_usage": 10
}

Error Responses

  • 401 Unauthorized – Authentication failed or token missing.

  • 403 Forbidden – User does not have permission to access this resource.


Usage Notes

  • Ensure the user-token variable is set in your environment or headers.

  • The user_type query parameter must be set to ENTERPRISE_API.

  • The response includes subscription and usage details relevant to the authenticated user.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Query Params
string
Responses

Language
Credentials
Bearer
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json