Scrapingdog

Account API

The Account API lets you programmatically monitor your Scrapingdog account usage. Query your remaining API credits and the number of active concurrent connections at any time.

Endpoint: https://api.scrapingdog.com/account

API Parameters

🔑

Scrapingdog Parameters

  • api_key Required
    Your personal API key. Available on your dashboard.

    Type: String

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/account?api_key=APIKEY"
API Response
{
  "threadCount": 16,
  "requestLimit": 104585935,
  "requestUsed": 48758095,
  "validity": 14,
  "concurrency_limit": 450,
  "pack": "enterprise",
  "pack_type": "monthly",
  "linkedin_concurrency_limit": 45,
  "linkedin_thread_count": 0,
  "email": "email@email",
  "username": "john",
  "apiKey": "apikey"
}