Skip to main content
GET
/
v1
/
workspaces
/
quotas
Workspaces Quotas
curl --request GET \
  --url 'https://api.scrapin.io/v1/workspaces/quotas?apikey='
{
"status": "success",
"data": {
"credits_left": 8766,
"rate_limit_left": 4850,
"credits": {
"total": 10000,
"used": 1234,
"left": 8766
},
"daily_rate_limit": {
"limit": 5000,
"used": 150,
"left": 4850,
"next_reset": "2026-01-28T00:00:00.000Z"
},
"minute_rate_limit": {
"limit": 500,
"used": 12,
"left": 488,
"next_reset": "2026-01-27T14:32:45.000Z"
},
"auto_top_up": {
"enabled": false,
"threshold": 100,
"amount": 1000
}
}
}

Authorizations

apikey
string
query
required

This required parameter is a string. It represents the APIKEY obtained from the developer dashboard. You must use it in the query string of your request as ?apikey=YOUR_API_KEY or in the headers as x-api-key: YOUR_API_KEY

Response

The endpoint returns detailed information about the workspace quotas, including credits, daily rate limit, minute rate limit, and auto top-up settings.

status
string

Indicates the status of the API request.

Example:

"success"

data
object

Contains the quotas information for the workspace.