# GET /api/v1/capabilities

> What this token can do

- Group: meta
- Tier: R
- Required scope: read:account
- Docs: https://api.inleed.com/reference/meta/get-capabilities

## Description

Returns the granted `scopes`, the `tools` this token can see, and a `features` object of per-node capability flags. Call it to learn what a token is allowed to do before planning a call it may not be able to make.

## Request

```bash
curl -X GET "https://mcp.inleed.com/api/v1/capabilities" \
  -H "Authorization: Bearer inl_live_…"
```

## Response · 200

```json
{
  "scopes": [
    "example.se"
  ],
  "tools": [
    "example.se"
  ],
  "features": "example.se"
}
```

## Errors

- **401** No token was presented, or the token is revoked, expired or unknown. — codes: unauthorized, token_expired, token_revoked
- **403** The token lacks a required scope, or this account does not own the resource. — codes: insufficient_scope
- **429** The rate limit for this token is exhausted. See `Retry-After`. — codes: rate_limited
- **500** Something went wrong on our side. The failure is logged against `requestId`. — codes: internal_error

