GET
/
email_verify
/
getcredits
curl --request GET \
  --url https://api.clearout.io/v2/email_verify/getcredits \
  --header 'Authorization: Bearer <token>'
[
  {
    "status": "success",
    "data": {
      "available_credits": 114563,
      "credits": {
        "available": 114563,
        "subs": null,
        "available_daily_verify_limit": null,
        "reset_daily_verify_limit_date": "2019-03-04T18:30:00.000Z",
        "total": 114563
      },
      "low_credit_balance_min_threshold": 50
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
OK
status
string

Response Object status

Example:

"success"

data
object