Skip to main content
GET
/
api
/
v1
/
limits
Get Source Access Policy
curl --request GET \
  --url https://data-api.sovfixer.com/api/v1/limits \
  --header 'Authorization: <api-key>'
{
  "scope": "user",
  "subject": "alice@example.com",
  "allowlist": {
    "mode": "restricted",
    "source": "user",
    "sources": [
      "GG",
      "TD",
      "HH",
      "PH"
    ]
  },
  "sources": {
    "GG": {
      "limits": {
        "daily": 500,
        "monthly": 10000
      },
      "usage": {
        "daily": 42,
        "monthly": 6700
      },
      "remaining": {
        "daily": 458,
        "monthly": 3300
      }
    },
    "PH": {
      "limits": {
        "monthly": 1000
      },
      "usage": {
        "monthly": 312
      },
      "remaining": {
        "monthly": 688
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Query Parameters

org_short_name
string

Filter by organization short name (e.g. 'AMWNS'). Staff only. Mutually exclusive with username.

username
string

Filter by this username. Defaults to the requesting user. Staff only when querying another user.

Response

allowlist
object
required
scope
enum<string>
required
Available options:
user,
org
sources
object
required

Per-source quota state. Sources with no cap are omitted.

subject
string
required