# Get competitor technology

Read stored technology evidence and best chart positions for an iOS app.

## 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}/technology

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

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `platform` | path | ios | yes | Technology observations support iOS apps. |
| `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

No request body. Returns existing observations only.

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

## Response

status is observed or not_collected. SDK and best-rank evidence each have their own collection status and date. Omitted source fields become null, not empty lists. Best ranks cover a rolling 90-day window, not a daily history or current position.

```
{
  "storeId": "0000000000",
  "status": "not_collected",
  "sdk": {
    "status": "not_collected"
  },
  "bestRanks": {
    "status": "not_collected"
  }
}

```

## Source

Dated technology observations and source-reported best chart positions. Missing fields remain unknown. An advertising-network identifier does not prove active ad buying.

## Refresh

Collection requires an explicit request and is subject to account limits and data availability. Opening this read does not start collection.
