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

# Read an org's current entitlement (admin).

> **Required scope:** admin

**Required scope:** `admin`

### Path parameters

<ParamField path="org_id" type="string" required>
  The NSR org/tenant
</ParamField>

### Response

No response body. The org's entitlement.

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `200` | The org's entitlement                              |
| `401` | Unauthorized — missing or invalid credentials      |
| `403` | Forbidden — the key/token lacks the required scope |
| `404` | No entitlement linked                              |
| `429` | Rate limited — see Retry-After / X-RateLimit-Reset |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.nsr.stateset.com/v1/metering/entitlement/{org_id}' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>
