# Get competitor

Read one stored iOS competitor-catalogue listing.

## 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/{platform}/{storeId}

- Method: `GET`
- Path: `/v1/competitors/{platform}/{storeId}`
- Authentication: Bearer API credential or OAuth access token
- Required scope: `context:read`
- MCP tool: `get_competitor`

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `platform` | path | ios | yes | The preview supports iOS only. |
| `storeId` | path | numeric string | yes | Apple App Store identifier. |

## 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

Identify the listing with platform ios and a numeric Apple store ID.

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

## Response

The catalogue get returns one listing object, not a pagination envelope.

```
{
  "platform": "ios",
  "storeId": "0000000000",
  "appName": "Example Calorie Tracker",
  "category": "Health & Fitness",
  "developerId": "example-developer",
  "price": 0,
  "adSupported": null,
  "inAppPurchases": true,
  "totalRatings": 12450,
  "rating": 4.7,
  "installs": {
    "kind": "ratings_proxy",
    "value": 622500
  },
  "releaseDate": "2024-05-01",
  "storeUpdatedAt": "2026-09-06",
  "sourceUpdatedAt": "2026-09-06",
  "descriptionUpdatedAt": null,
  "description": null,
  "shortDescription": null,
  "source": "itunes",
  "snapshotDate": "2026-03-01"
}

```

## Source

March dump listings may still say source appgoblin; current Apple lookups use itunes. Installs kind ratings_proxy is lifetime ratings × 50, not store-reported downloads.

## Refresh

list/get may enqueue a US iTunes lookup when today's tape row is missing. The GET itself never waits on Apple.
