> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thanx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Scopes

> Returns API scopes accessible to the current credentials

This endpoint can be used to list out the scopes the API credentials currently
has access to.

<RequestExample>
  ```bash Get Scopes theme={null}
  curl https://api.thanxsandbox.com/partner/scopes \
    -H 'X-ClientId: ${client_id}' \
    -H 'Accept-Version: v4.0' \
    -H 'Content-Type: application/json' \
    -H 'Authorization: Bearer ${access_token}' \
  ```
</RequestExample>

### Response

<ResponseField name="scopes" type="array(string)">
  Scope granted to API credential being used
</ResponseField>

<ResponseExample>
  ```json Response Example theme={null}
  {
    "scopes": [
      "subscribers.write"
    ]
  }
  ```
</ResponseExample>
