---
title: "RocketReach API Account"
method: GET
path: "/account/"
tags: ["Account"]
---

# RocketReach API Account

`GET /account/`

Retrieve & Manage Account Details

## Response `200`

Success. Returns the account object.

- UserModel
  - `id` integer — RocketReach internal unique user ID
  - `first_name` string, nullable — First name of the user
  - `last_name` string, nullable — Last name of the user
  - `email` string, nullable — Email for the user
  - `state` 'anonymous' | 'test_user' | 'registered'
  - `credit_usage` CreditUsage[]
    - `credit_type` string
    - `allocated` integer — Value will be 'inf' if infinity
    - `used` integer
    - `remaining` integer — Value will be 'inf' if infinity
  - `rate_limits` RateLimit[]
    - `action` string — The credit action being rate limited
    - `duration` string — The duration of the rate limit window
    - `limit` integer, nullable — The maximum number of requests allowed
    - `used` integer — The number of requests used in the current window
    - `remaining` integer, nullable — The number of requests remaining in the current window

## Other responses

- `400` — Bad Request. The request is malformed or missing required parameters.
- `401` — Unauthorized. API Key is missing or invalid.
- `403` — Forbidden. API Key lacks permission to perform this action.
- `404` — Not Found. The requested resource (e.g., profile) does not exist.
- `429` — Too Many Requests. API request limit reached -- slow down requests.
- `500` — Internal Server Error. Unexpected error on RocketReach servers. Try again later.

---

[API](https://skmtc.dev/rocketreach/apis/rocketreach-api.md) · [All operations](https://skmtc.dev/rocketreach/apis/rocketreach-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rocketreach/rocketreach-api/revisions/68b5a27dfb6d/schema)
