Account

Endpoints for retrieving data about the authenticated account

Overview

The me service provides read-only access to your own account data — credits, usage, and profile information. These endpoints are free and do not consume credits.

Base path: https://api.datacaiman.com/v1/me

Cost: free (no credits deducted)


GET /v1/me/account

Returns your current credit balances and usage statistics.

Response

Field Type Description
plan string Your current plan (free, pro, business)
credits_remaining number Credits available to spend right now
credits_monthly number Monthly credits from your plan (resets on renewal)
credits_extra number One-time credits (do not reset)
call_count integer Total API calls made across all time
credits_used number Total credits consumed across all time

Example

curl https://api.datacaiman.com/v1/me/account \
  -H "X-API-Key: dc_your_key_here"
{
  "plan": "pro",
  "credits_remaining": 4850.0,
  "credits_monthly": 5000.0,
  "credits_extra": 0.0,
  "call_count": 150,
  "credits_used": 150.0
}

GET /v1/me/user

Returns your profile information.

Response

Field Type Description
email string Your account email address
email_verified boolean Whether the email address has been verified
name string Your display name
created_at string Account creation date (ISO 8601)

Example

curl https://api.datacaiman.com/v1/me/user \
  -H "X-API-Key: dc_your_key_here"
{
  "email": "[email protected]",
  "email_verified": true,
  "name": "Jane Doe",
  "created_at": "2026-01-10T12:00:00Z"
}