App Store

Search App Store with one API call

Read App Store — iOS apps and customer reviews — without building or maintaining a scraper. Official iTunes endpoint. Same response shape as every other platform here, so one parser handles all of them. 1 credit a call.

The call

curl -H "x-api-key: $SS_KEY" \
  "https://api.socialsearchapi.com/v1/appstore/search?query=llm+agents"

This call costs 1 credit once you are on credits. A new account gets 5 free calls on any platform — verify an email and this command runs as-is.

What comes back

A real response from this endpoint, captured on 2026-07-25 and trimmed to one item:

{
  "success": true,
  "platform": "appstore",
  "data": {
    "total": 3,
    "items": [
      {
        "id": 1232780281,
        "platform": "appstore",
        "type": "app",
        "title": "Notion: Notes, Tasks, AI",
        "text": "Notion is an AI-powered all-in-one workspace that helps individuals and teams write notes, manage tasks, organize pro...",
        "url": "https://apps.apple.com/us/app/notion-notes-tasks-ai/id1232780281?uo=4",
        "author_name": "Notion Labs, Incorporated",
        "created_at": null,
        "metrics": {
          "rating": 4.77787,
          "rating_count": 89074
        },
        "extra": {
          "price": "Free",
          "genres": [
            "Productivity",
            "Business"
          ],
          "version": "1.7.324"
        }
      }
    ]
  },
  "credits_used": 1
}

Items from App Store carry: author_name, extra, id, metrics, platform, text, title, type, url.

Why not just scrape it yourself

The iTunes Search endpoint is public and stable; the review feed is a paginated RSS document per country that has to be walked and normalised. Included so app research sits in the same schema as social.

  • Cost here: 1 credit a call, $0.003 at list.
  • Last verified 2026-07-25: 104ms for this call.
  • Coverage: Public listings and reviews by storefront. No sales or install figures.
Full reference: every App Store endpoint, its parameters and its price are in the API docs.

Get a free key — 5 calls, no card

Other platforms