PeekPanda markpeekpandaDocumentationFor AI ↗Open app

PeekPanda docs

Search iOS apps

Search the live App Store by name.

Download Markdown ↓
POST/v1/aso/app-search
Auth Bearer API credential or OAuth access tokenScope content:writeMCP search_ios_apps

Request

This command calls Apple's public Search API immediately and is rate-limited to 20 searches per minute. Other ASO reads do not call Apple.

curl --request POST 'https://api.peekpanda.com/v1/aso/app-search' \
  --header "Authorization: Bearer $PEEKPANDA_TOKEN" \
  --header 'x-genviral-tenancy: personal' \
  --header 'content-type: application/json' \
  --data '{"term":"calorie"}'

Response

Illustrative asoAppSearchPageSchema. Store facts are what Apple's search returned for this term.

{
  "data": [
    {
      "storeId": "0000000000",
      "name": "Example Calorie Tracker",
      "iconUrl": null,
      "developerName": "Example Labs",
      "primaryGenre": "Health & Fitness",
      "rating": 4.7,
      "ratingCount": 12450,
      "inCatalogue": true
    }
  ],
  "term": "calorie"
}

Parameters

NameInTypeRequiredDescription
termbodystringYesApp Store search text.

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.
409conflict when the write would duplicate an exclusive row.

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 POST calls Apple immediately and is limited to 20 app searches per minute. GET ASO routes never call Apple. Other Apple collection stays on the 4s pacer and 2,500 calls per UTC day.