Skip to main content
GET
/
v1
/
workspaces
/
quotas
Workspaces Quotas
curl --request GET \
  --url 'https://api.scrapin.io/v1/workspaces/quotas?apikey='
{
  "success": true,
  "data": {
    "credits_left": 123,
    "rate_limit_left": 123
  }
}

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 information about the workspace quotas, including remaining credits (credits_left) and rate limit (rate_limit_left).

success
boolean

Indicates whether the API request was successful.

data
object

Contains the quotas information for the workspace.