# List competitor categories

List stored competitor-catalogue category strings and their listing counts.

## Contract status

Preview contract: these routes and tools are implemented in the shared contract, but the public host, customer API access and OAuth flow have not been deployment verified.

## Endpoint: GET /v1/competitors/categories

- Method: `GET`
- Path: `/v1/competitors/categories`
- Authentication: Bearer API credential or OAuth access token
- Required scope: `context:read`
- MCP tool: `list_competitor_categories`

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |

## Known errors

- 400 invalid_request for an invalid filter, identity or limit.
- 401 authentication_required for a missing or invalid credential.
- 402 subscription_required when access is not entitled.
- 403 authorization_required for a missing scope or unavailable preview access.
- 404 not_found when the record is outside the accessible catalogue.
- 429 rate_limited; honor Retry-After when present.

## Request

This read has no query parameters.

```
curl --get 'https://api.peekpanda.com/v1/competitors/categories' \
  --header "Authorization: Bearer $PEEKPANDA_TOKEN" \
  --header 'x-genviral-tenancy: personal'
```

## Response

Each row is a stored category string and how many listings use it.

```
{
  "data": [
    {
      "category": "Health & Fitness",
      "count": 120
    }
  ]
}

```

## Source

Competitor catalogue category strings on stored listings.

## Refresh

No provider call.
