/v1/auth/deviceStart browser-assisted login for an agent or CLI without copying an API key.
A focused JSON API for current App Store keyword search, difficulty, popularity, and app metadata.
For an AI agent or CLI, use browser-assisted login with the open-source ASO Skill CLI. The tool opens a connection page, you approve its exact permissions, and it stores the resulting scoped credential in your operating-system credential store. You do not need to copy a secret into .env or into the conversation.
For a server or CI environment, create and store a key manually:
ASO_SKILL_API_KEY in a server-side secret manager.curl https://api.asoskill.com/v1/popularity \
-H "Authorization: Bearer $ASO_SKILL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"term":"workout planner","storefront":"US"}'/v1/auth/deviceStart browser-assisted login for an agent or CLI without copying an API key.
/v1/searchCurrent App Store results and a 0–100 keyword difficulty score.
/v1/popularityA 1–100 keyword popularity score from the best available signal.
/v1/apps/lookupCurrent App Store metadata for one to ten app IDs.
/v1/creditsThe authenticated account's remaining credit balance.
/v1/billing/packsPublic discovery of available prepaid credit packs.
/healthPublic service availability without an API key or credit.
Every successful search, popularity, or app-lookup call costs one credit. Validation errors and upstream failures do not consume a credit; if a credit was reserved before a service failure, it is restored idempotently.
Search results are fresh for one hour and a stale search fallback is never older than 24 hours. Compact app summaries used to enrich search results are reused for eight hours; if that optional enrichment is throttled, ranked results can still succeed with fewer optional fields. Popularity and app lookup results are fresh for eight hours. Preserve the response's cache, source, and fetchedAt fields when presenting data to a user.
For HTTP 429 or a retryable 5xx response, honor Retry-After when present. Otherwise, retry with exponential backoff and jitter. Do not automatically repeat billing actions.
Responses advertise the enforced shared request policy through RateLimit-Policy and RateLimit-Limit. These are capacity hints, not additional credits or a per-account quota.
The API encodes its major version in the URL. Existing /v1/ operations will not receive intentional breaking changes; backward-compatible additions may be released within v1. A breaking replacement will use a new major path such as /v2/.
When practical, a deprecated operation will remain available for at least six months. Its responses will include the standard Deprecation header, a Link to migration guidance with rel="deprecation", and, once removal is scheduled, a Sunset header. Deprecations will also be announced in this guide. Urgent security, legal, or upstream-platform requirements may require a shorter period.
Let agent tools use browser-assisted login and the operating-system credential store. For unattended deployments, store keys on the server or in a secret manager, never in browser JavaScript, URLs, logs, public repositories, or conversation transcripts.