PeekPanda markpeekpandaDocumentationFor AI ↗Open app

PeekPanda docs

Get ASO keyword gap

Compare stored keyword positions between two apps.

Download Markdown ↓
GET/v1/aso/apps/{appId}/gap/{rivalStoreId}
Auth Bearer API credential or OAuth access tokenScope context:readMCP get_aso_keyword_gap

Request

Compares stored positions for the subject app and a rival store id. This GET never calls Apple.

curl --get 'https://api.peekpanda.com/v1/aso/apps/11111111-1111-4111-8111-111111111111/gap/0000000001' \
  --header "Authorization: Bearer $PEEKPANDA_TOKEN" \
  --header 'x-genviral-tenancy: personal'

Response

Illustrative asoKeywordGapSchema. Only-rival, only-subject and shared rows are stored observed positions, not estimates.

{
  "subjectStoreId": "0000000000",
  "rivalStoreId": "0000000001",
  "rivalName": "Rival Tracker",
  "onlyRival": [
    {
      "query": "calorie counter",
      "rivalPosition": 2
    }
  ],
  "onlySubject": [
    {
      "query": "calorie tracker",
      "subjectPosition": 4
    }
  ],
  "shared": [
    {
      "query": "food diary",
      "subjectPosition": 8,
      "rivalPosition": 3
    }
  ]
}

Parameters

NameInTypeRequiredDescription
appIdpathuuidYesTracked ASO app id.
rivalStoreIdpathnumeric stringYesRival Apple App Store identifier.

Known errors

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

Source

Apple public Search + Search hints. Difficulty from page-one rating counts Apple returns (page_one_median_rating_count: median page-one ratingCount, log10 scale, 1M ratings = 100). Demand is autocomplete order from apple_search_hints (rank + variant count), not volume and not Apple Ads popularity. Apple Ads Insights is not wired. Positions are observed_search_api_position from itunes.apple.com/search us/en_us.

Refresh

This GET never calls Apple. Snapshots younger than 24 hours are served from storage; hints are reused for 7 days.