# Get competitor paid-ad refresh status

Read an app's latest paid-ad refresh and your remaining daily refreshes.

## 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}/paid-ads/refresh

- Method: `GET`
- Path: `/v1/competitors/{platform}/{storeId}/paid-ads/refresh`
- Authentication: Bearer API credential or OAuth access token
- Required scope: `context:read`
- MCP tool: `get_app`
- MCP action: `ad_refresh_status`

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `platform` | path | ios | yes | Paid-ad refresh supports 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. This read never starts a refresh; poll it while latest.state is running.

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

## MCP request

Call get_app with action ad_refresh_status. Path fields go in params, filters in query, and a write body in body.

```
{
  "name": "get_app",
  "arguments": {
    "request": {
      "action": "ad_refresh_status",
      "params": {
        "platform": "<platform>",
        "storeId": "<storeId>"
      }
    }
  }
}

```

## Response

latest is null until the app has been refreshed. latest.state is running, completed, not_matched or failed. newAdCount is null until the walk has started. quota is daily with limit, used, remaining and resetAt, or unlimited.

```
{
  "appStoreId": "0000000000",
  "latest": {
    "state": "running",
    "requestedAt": "2026-09-24T08:00:00.000Z",
    "settledAt": null,
    "newAdCount": null
  },
  "quota": {
    "kind": "daily",
    "limit": 3,
    "used": 1,
    "remaining": 2,
    "resetAt": "2026-09-25T08:00:00.000Z"
  }
}

```

## Source

Public ads from the app's own advertiser page, matched by its exact app name. Ads are attributed only when the advertiser matches; no looser name matching is used.

## Refresh

A refresh walks the advertiser from its newest ad. It counts against your plan: Peek 1 and Panda 3 refreshes in a rolling 24 hours, shared by a workspace. An app refreshed today, by anyone, is not counted again; a failed refresh is not counted at all.
