GET
/
workspaces
/
quotas
curl --request GET \
  --url https://api.scrapin.io/v1/workspaces/quotas
{
"status": "success",
"data": {
"credits_left": 90000,
"rate_limit_left": 19000
}
}

Authorizations

apikey
string
query
required

This required parameter is a string. It represents the APIKEY obtained from the developer dashboard.

Response

200
application/json

The endpoint returns information about the workspace quotas, including remaining credits (credits_left) and rate limit (rate_limit_left).

The response is of type object.