Account API

Retrieve your account information including plan details, credit quota, requests consumed, and remaining credits.

Endpoint: https://api.enrichmentapi.io/account_info

API Parameters

🔑

Authentication

  • api_key Required
    Your API key from the dashboard.

API Examples

Code to Integrate
curl -G "https://api.enrichmentapi.io/account_info" \
  --data-urlencode "api_key=APIKEY"
API Response
{
  "api_key": "your_api_key_here",
  "email": "[email protected]",
  "plan": "basic",
  "quota": 7500,
  "requests": 1240,
  "requests_left": 6260,
  "threads": 2,
  "threads_limit": 5,
  "threads_left": 3
}