Skip to main content
The Appeeky API gives you programmatic access to iOS App Store intelligence. Retrieve app metadata, keyword rankings, revenue estimates, category charts, competitor analysis, and more — all through a simple REST API.

Quick Start

Go from zero to your first API call in 30 seconds

Authentication

Register for a free API key and authenticate requests

Apps

Metadata, intelligence reports, reviews, and country rankings

Keywords

Ranks, suggestions, metrics, trends, and competitor overlap

Search & Discovery

App search, category charts, new releases, and trending apps

Market Intelligence

Market movers, trending keywords, featured apps, and download estimates

App Store Connect

Manage your apps, metadata, analytics, sales reports, and reviews via ASC API

RevenueCat

Revenue charts, subscriber metrics, and monetization insights

My Apps

Manage your tracked apps, keywords, versions, and reports via API or MCP

MCP Server

Connect Claude, Cursor, or any MCP client to App Store intelligence

API Reference

Full endpoint index, error codes, and response format

What You Can Do

CapabilityEndpointWhat You Get
Health CheckGET /v1/healthService status and uptime
App SearchGET /v1/searchSearch apps by keyword or direct App ID lookup
App MetadataGET /v1/apps/:idTitle, developer, icon, description, screenshots, version, size, languages, age rating
Intelligence ReportGET /v1/apps/:id/intelligenceRevenue & download estimates, in-app purchases, similar apps, sentiment analysis
User ReviewsGET /v1/apps/:id/reviewsStar ratings, review text, author, date (up to 500 per country)
App KeywordsGET /v1/apps/:id/keywordsOrganic keyword rankings, popularity, and competitiveness
Keyword TrendsGET /v1/apps/:id/keywords/trendsHistorical rank changes for a keyword over time
Country RankingsGET /v1/apps/:id/country-rankingsApp’s chart positions across multiple countries
Keyword RankingsGET /v1/keywords/ranksAll apps ranking for a specific keyword
Keyword SuggestionsGET /v1/keywords/suggestionsApple Search autocomplete suggestions
Keyword MetricsGET /v1/keywords/metricsSearch volume and difficulty scores
Keyword CompareGET /v1/keywords/compareCompetitor keyword overlap and gap analysis
Track KeywordPOST /v1/keywords/trackAdd a keyword to the daily scraping pipeline
CategoriesGET /v1/categoriesAll App Store category IDs and names
Category ChartsGET /v1/categories/:id/topTop Free, Top Paid, Top Grossing per category
New ReleasesGET /v1/new-releasesRecently released apps from the App Store
DiscoverGET /v1/discoverTrending and noteworthy apps
New #1 AppsGET /v1/discover/new-number-1Apps that just reached #1 in their category
My AppsGET/POST/PATCH/DELETE /v1/user/appsManage your tracked app list (0 credits)
CompetitorsGET/POST/DELETE /v1/user/apps/:appId/competitorsTrack competitor apps per app (0 credits)
Tracked KeywordsGET/POST/DELETE /v1/user/apps/:appId/keywordsManage tracked keywords per app (0 credits)
Metadata VersionsGET/POST/PATCH /v1/user/apps/:appId/versionsSave and version your ASO copy (0 credits)
ReportsGET/DELETE /v1/user/reportsAccess saved ASO analysis reports (0 credits)

Base URL

All API requests are made to:
https://api.appeeky.com
All endpoints are prefixed with /v1. For example, the full URL for app metadata is:
https://api.appeeky.com/v1/apps/1617391485

Response Format

Successful responses wrap data in a data envelope:
{
  "data": {
    "trackId": 1617391485,
    "trackName": "Block Blast!",
    "sellerName": "Hungry Studio"
  }
}
Error responses return an error object with a machine-readable code and a human-readable message:
{
  "error": {
    "code": "INVALID_APP_ID",
    "message": "App ID must be a positive integer"
  }
}
Credits are only deducted on successful responses (2xx). Failed requests never consume credits.

Get Started in 30 Seconds

1. Create a free account on the Appeeky Dashboard to get your API key with 100 monthly credits. Sign up with email or GitHub. 2. Make your first request:
curl "https://api.appeeky.com/v1/apps/1617391485?country=us" \
  -H "X-API-Key: YOUR_API_KEY"
That’s it — you’re ready to explore. Head to the Quick Start for a full walkthrough.