Account API

The Serpdog Account API will allow users to get information about their account, including email address, plan name, quota, number of requests left, etc.

Use this API to get info about your account. Here is the list of default parameters to be used with this API:

ParameterDescription

api_key required

This is your API key.

API Example:

cURL "https://api.serpdog.io/account_info?api_key=APIKEY"
{
  "user_name": "John Doe",
  "api_key": "630010e6797faba0b15e4678",
  "email": "test@gmail.com",
  "plan": "free",
  "quota": 100,
  "requests": 0,
  "requests_left": 100,
  "billing_history": [{
   "date": "2023-10-26T14:43:13.872Z",
   "plan": "LITE",
   "amount": "30$",
   "invoice": "Stripe Invoice Link"
  }]
}

Last updated