v1

latestOpenAPI 3.1.02026-07-241640107.8 KB
Account

⭐ RocketReach Universal API Account

Retrieve & Manage Account Details

get/universal/account/

Response

Success. Returns the account object.

idinteger

RocketReach internal unique user ID

first_namestring nullable

First name of the user

last_namestring nullable

Last name of the user

emailstring nullable

Email for the user

state'anonymous' | 'test_user' | 'registered'
api_keystring

API Key for the user

api_key_domainstring nullable
daily_api_num_callsinteger nullable

Number of API calls made today by the user

daily_api_limitstring

Maximum number of daily API calls for the user

Example response

{
  "id": 123456,
  "first_name": "Mark",
  "last_name": "Cuban",
  "email": "name@example.com",
  "daily_api_num_calls": 5,
  "credit_usage": {
    "credits_allocated": 100,
    "credits_used": 50,
    "credits_remaining": 50,
    "last_synced": "2023-10-01T12:00:00Z"
  },
  "credit_usage_by_action": [
    {
      "credit_action": "PersonSearch",
      "attempted_count": 50,
      "succeeded_count": 50,
      "credits_used": 50,
      "last_synced": "2023-10-01T12:00:00Z"
    }
  ]
}