Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.appeeky.com/llms.txt

Use this file to discover all available pages before exploring further.

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.
Appeeky

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

ASO Tools

Audits, briefs, intent clusters, metadata suggestions, and competitor reports

AI Visibility

Track how often ChatGPT, Gemini, Claude, and Perplexity recommend your app

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 (topCountries removed — use Country Rankings)
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 (use this for top countries data)
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)
ASO AuditGET /v1/aso/apps/:id/auditFull ASO health check — title, subtitle, screenshots, reviews, keyword coverage
ASO BriefGET /v1/aso/apps/:id/briefExecutive summary of your app’s ASO posture for stakeholders
Intent ClustersGET /v1/aso/apps/:id/intent-clustersUser intents grouped from your ranking keywords
Metadata SuggestPOST /v1/aso/metadata/suggestAI-generated title, subtitle, and keyword set proposals
Metadata ValidatePOST /v1/aso/metadata/validateLint your app metadata against length, character, and best-practice rules
ASO OpportunitiesGET /v1/aso/apps/:id/opportunitiesRanked list of keywords and gaps worth pursuing next
Competitor ReportGET /v1/aso/apps/:id/competitor-reportSide-by-side ASO comparison against your tracked competitors
AI Visibility — ScoreGET /v1/ai-visibility/:appId/overviewAI Visibility Score (0–100), sentiment, and intent coverage per model & country
AI Visibility — IntentsGET /v1/ai-visibility/:appId/intentsPer-intent visibility, prompt coverage, and which apps appear alongside (or instead of) yours
AI Visibility — PromptsGET/POST/PATCH/DELETE /v1/ai-visibility/intents/:intentId/promptsAdd, edit, pause, or remove the user-style prompts the agent sends to AI assistants
AI Visibility — CompetitorsGET /v1/ai-visibility/:appId/competitorsThe apps ChatGPT, Gemini, Claude, and Perplexity recommend in your category
AI Visibility — TrendGET /v1/ai-visibility/:appId/trendDaily history of visibility, sentiment, and prompt counts for charting
AI Visibility — AnswersGET /v1/ai-visibility/:appId/answers/:answerIdDrill into a single AI response — raw text, parsed mentions, and citations
AI Visibility — BootstrapPOST /v1/ai-visibility/:appId/bootstrapGenerate the initial intents + prompts and queue the first scan
AI Visibility — ScanPOST /v1/ai-visibility/:appId/scanTrigger an on-demand AI Visibility scan for a country and selected models
AI Visibility — SettingsGET/PATCH /v1/ai-visibility/:appId/settingsConfigure enabled models, scan cadence, and feature toggles per app

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.