# Get tag parameters Returns a list of all unique tag parameter combinations for the specified tag. Pagination parameters: - limit: Number of items to return per page (1-1000, default 100) - offset: Number of items to skip from the beginning (default 0) Endpoint: GET /tag/{id}/params Version: 1.0.0 Security: ApiKeyAuth ## Path parameters: - `id` (string, required) The tag identifier ## Query parameters: - `limit` (integer) Number of items to return per page (1-1000, default 100) - `offset` (integer) Number of items to skip from the beginning (default 0) ## Response 200 fields (application/json): - `id` (string, required) Example: "kol" - `label` (string) Example: "Key Opinion Leader" - `rank` (integer) Example: 4 - `excludeEntities` (boolean) - `chain` (string) Enum: "ethereum", "polygon", "bsc", "optimism", "avalanche", "arbitrum_one", "bitcoin", "tron", "base", "flare", "linea", "manta", "blast", "ton", "solana", "mantle", "dogecoin", "sonic" - `disablePage` (boolean) ## Response 400 fields (application/json): - `error` (string) Example: "Bad request" ## Response 401 fields (application/json): - `error` (string) Example: "API key missing or invalid" ## Response 500 fields