ASO Keyword Rank Tracker
Pricing
from $2.00 / 1,000 rank checks
ASO Keyword Rank Tracker
Give it a keyword and an app: it returns the exact App Store search position, who outranks it, and the gap to the top. Track ASO rankings per country over time.
ASO Keyword Rank Tracker
Pricing
from $2.00 / 1,000 rank checks
Give it a keyword and an app: it returns the exact App Store search position, who outranks it, and the gap to the top. Track ASO rankings per country over time.
You can access the ASO Keyword Rank Tracker programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in API & Integrations in Apify Console.
{ "openapi": "3.0.1", "info": { "version": "0.1", "x-build-id": "MJcLLWbFmjHts0beH" }, "servers": [ { "url": "https://api.apify.com/v2" } ], "paths": { "/acts/renzomacar~aso-keyword-rank-tracker/run-sync-get-dataset-items": { "post": { "operationId": "run-sync-get-dataset-items-renzomacar-aso-keyword-rank-tracker", "x-openai-isConsequential": false, "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK" } } } }, "/acts/renzomacar~aso-keyword-rank-tracker/runs": { "post": { "operationId": "runs-sync-renzomacar-aso-keyword-rank-tracker", "x-openai-isConsequential": false, "summary": "Executes an Actor and returns information about the initiated run in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/runsResponseSchema" } } } } } } }, "/acts/renzomacar~aso-keyword-rank-tracker/run-sync": { "post": { "operationId": "run-sync-renzomacar-aso-keyword-rank-tracker", "x-openai-isConsequential": false, "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK" } } } } }, "components": { "schemas": { "inputSchema": { "type": "object", "properties": { "keywords": { "title": "Keywords", "type": "array", "description": "Search terms to check, exactly as a user would type them into App Store search. Aliases: keyword, terms, term, queries.", "default": [ "meditation app" ], "items": { "type": "string" } }, "appIds": { "title": "Apps to track", "type": "array", "description": "Numeric App Store IDs, apps.apple.com URLs, or iOS bundle IDs. Aliases: ids, appId, apps, targetApps.", "default": [], "items": { "type": "string" } }, "countries": { "title": "Countries", "type": "array", "description": "Two letter iTunes storefronts. Ranking is per storefront: an app at #4 in the US can be unranked in Germany. Aliases: country, countryCodes.", "default": [ "us" ], "items": { "type": "string" } }, "depth": { "title": "Search depth", "minimum": 10, "maximum": 200, "type": "integer", "description": "How deep into the result list to look for your app. 200 is Apple's ceiling; the API often returns slightly fewer, and the real depth checked is reported in every row.", "default": 100 }, "includeCompetitorsAbove": { "title": "List the apps ranking above yours", "type": "boolean", "description": "Attaches the ordered list of app names sitting above your app for that keyword. This is the part that makes the number actionable.", "default": true }, "competitorsAboveLimit": { "title": "How many competitors to list", "minimum": 1, "maximum": 50, "type": "integer", "description": "How many higher-ranked competitors to list for each keyword. Only applies when \"Include competitors above\" is on.", "default": 10 }, "reportNotFound": { "title": "Keep rows for keywords where the app does not rank", "type": "boolean", "description": "A confirmed \"not in the top N\" is a real ASO answer, so it is delivered as a row with found=false and rank=null. Turn off to only pay for hits.", "default": true }, "stateKey": { "title": "Rank history record name", "type": "string", "description": "Key holding the previous run's positions, which is what makes rankChange possible.", "default": "ASO_RANK_STATE" }, "namedStateStore": { "title": "Named key-value store for rank history (optional)", "type": "string", "description": "Set this to a named store (for example aso-rank-history) so scheduled runs compare against each other. Without it every run reports rankChange as null." }, "maxItems": { "title": "Max items", "minimum": 1, "type": "integer", "description": "Hard ceiling on rank checks delivered and therefore on what you are charged.", "default": 500 }, "proxyConfiguration": { "title": "Proxy (optional)", "type": "object", "description": "Not required.", "default": { "useApifyProxy": false } } } }, "runsResponseSchema": { "type": "object", "properties": { "data": { "type": "object", "properties": { "id": { "type": "string" }, "actId": { "type": "string" }, "userId": { "type": "string" }, "startedAt": { "type": "string", "format": "date-time", "example": "2025-01-08T00:00:00.000Z" }, "finishedAt": { "type": "string", "format": "date-time", "example": "2025-01-08T00:00:00.000Z" }, "status": { "type": "string", "example": "READY" }, "meta": { "type": "object", "properties": { "origin": { "type": "string", "example": "API" }, "userAgent": { "type": "string" } } }, "stats": { "type": "object", "properties": { "inputBodyLen": { "type": "integer", "example": 2000 }, "rebootCount": { "type": "integer", "example": 0 }, "restartCount": { "type": "integer", "example": 0 }, "resurrectCount": { "type": "integer", "example": 0 }, "computeUnits": { "type": "integer", "example": 0 } } }, "options": { "type": "object", "properties": { "build": { "type": "string", "example": "latest" }, "timeoutSecs": { "type": "integer", "example": 300 }, "memoryMbytes": { "type": "integer", "example": 1024 }, "diskMbytes": { "type": "integer", "example": 2048 } } }, "buildId": { "type": "string" }, "defaultKeyValueStoreId": { "type": "string" }, "defaultDatasetId": { "type": "string" }, "defaultRequestQueueId": { "type": "string" }, "buildNumber": { "type": "string", "example": "1.0.0" }, "containerUrl": { "type": "string" }, "usage": { "type": "object", "properties": { "ACTOR_COMPUTE_UNITS": { "type": "integer", "example": 0 }, "DATASET_READS": { "type": "integer", "example": 0 }, "DATASET_WRITES": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_READS": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_WRITES": { "type": "integer", "example": 1 }, "KEY_VALUE_STORE_LISTS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_READS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_WRITES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_INTERNAL_GBYTES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_EXTERNAL_GBYTES": { "type": "integer", "example": 0 }, "PROXY_RESIDENTIAL_TRANSFER_GBYTES": { "type": "integer", "example": 0 }, "PROXY_SERPS": { "type": "integer", "example": 0 } } }, "usageTotalUsd": { "type": "number", "example": 0.00005 }, "usageUsd": { "type": "object", "properties": { "ACTOR_COMPUTE_UNITS": { "type": "integer", "example": 0 }, "DATASET_READS": { "type": "integer", "example": 0 }, "DATASET_WRITES": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_READS": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_WRITES": { "type": "number", "example": 0.00005 }, "KEY_VALUE_STORE_LISTS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_READS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_WRITES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_INTERNAL_GBYTES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_EXTERNAL_GBYTES": { "type": "integer", "example": 0 }, "PROXY_RESIDENTIAL_TRANSFER_GBYTES": { "type": "integer", "example": 0 }, "PROXY_SERPS": { "type": "integer", "example": 0 } } } } } } } } }}OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.
OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.
By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.
You can download the OpenAPI definitions for ASO Keyword Rank Tracker from the options below:
If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.
You can also check out our other API clients: