# GET /tag/{id}/params

**Operation ID:** `GetAllTagParams`

Get tag parameters

Returns a list of all unique tag parameter combinations for the specified tag.

## Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `limit` | query | string | No | Number of items to return per page (1-1000, default 100). Example: `"100"` |
| `offset` | query | string | No | Number of items to skip from the beginning (must be >= 0, default 0). Example: `"0"` |
| `id` | path | string | Yes | The tag identifier to retrieve parameters for. Example: `"proof-of-reserves"` |

## Responses

- **200**: OK
  **Schema**: (array)
    - **(items)**: ([PopulatedTag](https://arkm.com/llms/schemas/PopulatedTag.md))
- **400**: Bad Request
- **500**: Internal Server Error

## Example

```bash
curl -X GET "https://api.arkm.com/tag/proof-of-reserves/params?limit=100&offset=0" \
  -H "API-Key: YOUR_API_KEY"
```
