Optimize Your Google Play Store Listing
Improve your Android app listing with keyword-rich titles, descriptions, and metadata for better Play Store visibility.
Optimize your Play Store listing
Research competitors, optimize store listings, manage screenshots, track releases, and respond to reviews on Google Play. Search keyword rankings, audit listings for gaps, update titles and descriptions across locales, and manage reviews.
Search the Google Play Store for apps matching a search term. Returns app title, developer, rating, reviews, installs, and price for each result. Use this to see what apps rank for a given keyword.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "play-store-aso",
"skill": "search_apps",
"input": {
"term": "fitness tracker",
"country": "us",
"num": 10
}
}' \
https://api.toolrouter.com/v1/tools/callGet full details for a specific Android app on Google Play Store. Returns title, rating, reviews, description, version, category, developer info, install counts, and more. Use a package name like "com.example.app".
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "play-store-aso",
"skill": "app_details",
"input": {
"app_id": "com.whatsapp"
}
}' \
https://api.toolrouter.com/v1/tools/callAudit all Google Play store listings across locales with warnings for missing or underutilized fields. Checks for empty short descriptions, full descriptions under 100 characters, and missing titles.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "play-store-aso",
"skill": "audit_listings",
"input": {
"package_name": "com.example.app"
}
}' \
https://api.toolrouter.com/v1/tools/callFull export of all Google Play Store data including listings, images, tracks, and app details. Returns a comprehensive JSON backup of the entire store presence for a given package.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "play-store-aso",
"skill": "export_listings",
"input": {
"package_name": "com.example.app"
}
}' \
https://api.toolrouter.com/v1/tools/callUpdate a Google Play store listing for a specific locale. Supports title, short description, full description, and video URL. Defaults to dry-run mode — set dry_run to false to apply changes.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "play-store-aso",
"skill": "update_listing",
"input": {
"package_name": "com.example.app",
"locale": "en-US",
"title": "My App",
"short_description": "The best app ever",
"dry_run": true
}
}' \
https://api.toolrouter.com/v1/tools/callList images by type and locale for a Google Play store listing. Returns image IDs, URLs, and SHA256 hashes. Supports phone screenshots, feature graphics, icons, tablet screenshots, wear, and TV assets.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "play-store-aso",
"skill": "list_images",
"input": {
"package_name": "com.example.app",
"image_type": "phoneScreenshots",
"locale": "en-US"
}
}' \
https://api.toolrouter.com/v1/tools/callUpload an image (screenshot, icon, or feature graphic) to a Google Play store listing. Downloads the image from the provided URL and uploads it via the Google Play API. The edit is committed immediately.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "play-store-aso",
"skill": "upload_image",
"input": {
"package_name": "com.example.app",
"locale": "en-US",
"image_type": "phoneScreenshots",
"image_url": "https://example.com/screenshot.png"
}
}' \
https://api.toolrouter.com/v1/tools/callQuery all release tracks with version info for a Google Play app. Returns track name, release status, version codes, user fraction (for staged rollouts), and release notes per locale.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "play-store-aso",
"skill": "list_tracks",
"input": {
"package_name": "com.example.app"
}
}' \
https://api.toolrouter.com/v1/tools/callFetch recent user reviews for a Google Play app. Returns review text, star rating, author, device info, app version, and any developer reply. Requires Google Play Console API access.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "play-store-aso",
"skill": "list_reviews",
"input": {
"package_name": "com.example.app",
"max_results": 10
}
}' \
https://api.toolrouter.com/v1/tools/callReply to a user review on Google Play. Requires the review ID (from list_reviews) and the reply text. The reply will be visible publicly on the Play Store listing.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "play-store-aso",
"skill": "reply_to_review",
"input": {
"package_name": "com.example.app",
"review_id": "abc123",
"reply_text": "Thanks for the feedback!"
}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"play-store-aso","skill":"search_apps","input":{}}' \
https://api.toolrouter.com/v1/tools/callImprove your Android app listing with keyword-rich titles, descriptions, and metadata for better Play Store visibility.
Discover high-value keywords on Google Play by analyzing search results and competitor metadata.
Research what ads your competitors are running across Facebook and Google to understand their messaging and creative strategy.
Understand how users feel about your app by analyzing sentiment patterns across hundreds or thousands of reviews.
Dominate both app stores with keyword optimization, listing audits, review analysis, and cross-channel keyword strategy.
Yes. `search_apps` shows what apps appear for a keyword, and `app_details` gives the store metadata behind a specific result so you can compare your listing against the competition first.
Yes. `update_listing` defaults to dry-run mode, so you can review the exact title, short description, full description, or video changes before applying them.
Use `audit_listings` to spot missing titles, weak short descriptions, and thin full descriptions across all language variants. It is built for finding the worst gaps fast.
Yes. The tool can list and upload store images, check release tracks, read reviews, and reply to them, so you can manage the full Play Store presence from one place.