100 free credits — no credit card required.Start building
Logo
100 free credits — no credit card required

App Store App Listings Search API

Scrape App Store App Listings Search data with one API call. Searches DataForSEO's real-time, filterable Apple App Store listings database by app title (and/or description) and returns a unified AppList. Unlike the store-chart endpoints this one is the ONE true paginator — page with `limit` (≤50) + `offset` (then `offset_token` for deeper) and read the platform-wide `total`. Premium-tier because the upstream bills per returned item. Sourced from DataForSEO's synchronous live App Data database.

Last updated August 2026Maintained by the SocialCrawl team

Returns App Store listings matching an app title, and optionally a description, from a filterable database, plus a total count across the whole store.

Use it when you must page through many results, since it is the only App Store endpoint with real paging.

Searching 48 platforms in parallel

·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
App Store API

What can you do with the App Listings Search API?

The App Listings Search endpoint gives you structured App Store data with computed fields in a single request. No scraping infrastructure to build or maintain.

Example Request

curl -H "x-api-key: YOUR_API_KEY" \
  "https://www.socialcrawl.dev/v1/app_store/app-listings-search?title=photo+editor"
import requests

response = requests.get(
    "https://www.socialcrawl.dev/v1/app_store/app-listings-search",
    params={
    'title': 'photo editor',
    },
    headers={"x-api-key": "YOUR_API_KEY"},
)

data = response.json()
const response = await fetch(
  "https://www.socialcrawl.dev/v1/app_store/app-listings-search?title=photo+editor",
  {
    headers: { "x-api-key": "YOUR_API_KEY" },
  },
);

const data = await response.json();

Parameters

ParameterRequiredDescription
titleYesApp title to search for (e.g. 'photo editor').
descriptionNoOptional app-description text to match.
limitNoApps per page (1–50, default 20).
offsetNoPagination offset (up to 10,000; use offset_token beyond).
offset_tokenNoOpaque deep-pagination cursor from a prior response.
filtersNoAdvanced DataForSEO filter expression as a JSON array.
countryNoStorefront country as an ISO code ('US'), a full name, or a numeric code. Defaults to the US.
languageNoLanguage code (e.g. 'en'). Defaults to 'en'.
Example Response

What does the App Store App Listings Search API return?

Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.

Example response
{
  "success": true,
  "platform": "app_store",
  "endpoint": "/v1/app_store/app-listings-search",
  "data": {
    "items": [
      {
        "app": {
          "id": "897446215",
          "store": "app_store",
          "url": "https://apps.apple.com/us/app/canva-ai-video-photo-editor/id897446215",
          "title": "Canva: AI Video & Photo Editor",
          "icon": "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource211/v4/7b/2a/be/7b2abef5-7e45-1510-2921-3e35d18bd234/Placeholder.mill/512x512bb.jpg",
          "description": "CREATE ANYTHING WITH CANVA\nCanva is your all-in-one creative platform for stunning graphic design, photo editing, and video creation. From crafting presentations and building visual spreadsheets to designing resumes and creating social media content, Canva empowers everyone to design like a professional.\n\nREVOLUTIONARY AI VIDEO WITH VEO 3\nExperience next-generation video creation with Veo 3, our advanced AI tool that generates incredible videos with sound from simple text prompts. Create professional-quality content in seconds, complete with realistic audio that brings your vision to life.\n\nADVANCED PHOTO EDITOR & COLLAGE MAKER\nTransform your photos with our powerful editing suite. Remove backgrounds effortlessly with our background eraser, apply stunning filters, adjust lighting and contrast, and create eye-catching photo collages. Perfect for social media, marketing, or personal projects.\n\nPROFESSIONAL VIDEO EDITOR & MOBILE OPTIMIZATION\nCraft engaging videos with our intuitive video editor. Add captions, apply cinematic effects like slow motion, sync your edits to music with Beat Sync, and optimize content for mobile viewing. Ideal for social media reels, business presentations, or creative storytelling. Save your best work with 5GB for everyone.\n\nDYNAMIC PRESENTATIONS & SLIDESHOWS\nBuild captivating presentations and slideshows using professional templates. Visualize data effectively, design interactive worksheets for education, and create presentations that engage your audience. From corporate pitches to university assignments, make every slide count.\n\nSTANDOUT RESUME MAKER & CV BUILDER\nCreate impressive resumes and CVs that get results. Browse hundreds of professionally designed templates, customize layouts to reflect your personality, and build documents that catch employers' attention. Essential for job seekers and career advancement.\n\nVISUAL SPREADSHEETS & BULK CREATE AUTOMATION\nConvert data into compelling visual spreadsheets and infographics. Harness AI-powered Bulk Create to automatically generate thousands of design variations for advertising campaigns and marketing materials. Perfect for businesses scaling their creative output.\n\nEXTENSIVE TEMPLATE LIBRARY\nChoose from thousands of customizable templates for social media posts, business cards, flyers, invitations, logos, memes, and more. Every design is fully adaptable to match your unique brand and creative style.\n\nREAL-TIME COLLABORATION\nCollaborate seamlessly with team members in real-time. Share designs instantly, gather feedback, and work together on projects from anywhere. Ideal for creative teams, students, and professional organizations.\n\nUNLEASH YOUR CREATIVITY\nAccess thousands of high-quality templates, images, and design elements. Create professional designs with powerful AI features and bring your creative vision to life with industry-leading tools.\n\nCANVA FOR EDUCATION\nTransform your teaching with a school- and district-managed Canva experience built for the classroom. Create engaging visual learning materials with built-in moderation and age-appropriate controls for safe, collaborative lessons. Free for eligible K-12 teachers and students.\n\nTerms of Use: https://www.canva.com/policies/terms-of-use/\nPrivacy Policy: https://www.canva.com/policies/privacy-policy/",
          "developer": {
            "id": "897446218",
            "name": "Canva",
            "url": "https://apps.apple.com/us/developer/canva/id897446218?platform=iphone",
            "email": null,
            "address": null,
            "website": null
          },
          "rating": {
            "value": 4.9,
            "max": 5,
            "count": 3454444
          },
          "price": {
            "current": 0,
            "original": null,
            "currency": null,
            "is_free": true,
            "displayed": null
          },
          "reviews_count": 3454444,
          "category": null,
          "categories": null,
          "installs": null,
          "version": "Version 4.217.0",
          "minimum_os_version": "Requires iOS 15.0 or later.",
          "size": "149 MB",
          "released_at": null,
          "updated_at": "2026-07-15T05:14:41.000Z",
          "update_notes": "• NEW Magic Layers: Split any flat design into editable layers. Try it on generated images you've always wanted to edit.\n• NEW templates: Get inspiration from our new Winnie the Pooh and Devil Wears Prada 2 collections.\n• Presenter notes improvements: Write with custom AI prompts and track speaking time per slide.\n• Accessible PDFs: Designs exported as PDF now meet accessibility standards — readable by screen readers and assistive tools.\n\nNeed help? Visit canva.com/help\n\nHappy designing!",
          "image_urls": [
            "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource211/v4/7f/c3/31/7fc331e8-18ce-79f6-9779-5268688d861c/0.png/512x512bb.jpg",
            "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource211/v4/2b/d3/11/2bd311eb-d59b-b912-b588-0c0e7325cd80/1.png/512x512bb.jpg"
          ],
          "languages": [
            "EN"
          ],
          "advisories": [
            "13+"
          ],
          "similar_apps": [
            {
              "id": "588013838",
              "title": "VSCO: Photo & Video Editor",
              "url": "https://apps.apple.com/us/app/vsco-photo-video-editor/id588013838"
            },
            {
              "id": "587366035",
              "title": "Picsart AI Photo Editor, Video",
              "url": "https://apps.apple.com/us/app/picsart-ai-photo-editor-video/id587366035"
            }
          ],
          "more_by_developer": [
            {
              "id": "6757455363",
              "title": "Canva Create",
              "url": "https://apps.apple.com/us/app/canva-create/id6757455363"
            }
          ],
          "ext": {
            "appdata": {
              "type": "app_store_info_organic",
              "rank_group": 1,
              "rank_absolute": 1,
              "position": "left",
              "app_id": "897446215",
              "title": "Canva: AI Video & Photo Editor",
              "url": "https://apps.apple.com/us/app/canva-ai-video-photo-editor/id897446215",
              "icon": "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource211/v4/7b/2a/be/7b2abef5-7e45-1510-2921-3e35d18bd234/Placeholder.mill/512x512bb.jpg",
              "description": "CREATE ANYTHING WITH CANVA\nCanva is your all-in-one creative platform for stunning graphic design, photo editing, and video creation. From crafting presentations and building visual spreadsheets to designing resumes and creating social media content, Canva empowers everyone to design like a professional.\n\nREVOLUTIONARY AI VIDEO WITH VEO 3\nExperience next-generation video creation with Veo 3, our advanced AI tool that generates incredible videos with sound from simple text prompts. Create professional-quality content in seconds, complete with realistic audio that brings your vision to life.\n\nADVANCED PHOTO EDITOR & COLLAGE MAKER\nTransform your photos with our powerful editing suite. Remove backgrounds effortlessly with our background eraser, apply stunning filters, adjust lighting and contrast, and create eye-catching photo collages. Perfect for social media, marketing, or personal projects.\n\nPROFESSIONAL VIDEO EDITOR & MOBILE OPTIMIZATION\nCraft engaging videos with our intuitive video editor. Add captions, apply cinematic effects like slow motion, sync your edits to music with Beat Sync, and optimize content for mobile viewing. Ideal for social media reels, business presentations, or creative storytelling. Save your best work with 5GB for everyone.\n\nDYNAMIC PRESENTATIONS & SLIDESHOWS\nBuild captivating presentations and slideshows using professional templates. Visualize data effectively, design interactive worksheets for education, and create presentations that engage your audience. From corporate pitches to university assignments, make every slide count.\n\nSTANDOUT RESUME MAKER & CV BUILDER\nCreate impressive resumes and CVs that get results. Browse hundreds of professionally designed templates, customize layouts to reflect your personality, and build documents that catch employers' attention. Essential for job seekers and career advancement.\n\nVISUAL SPREADSHEETS & BULK CREATE AUTOMATION\nConvert data into compelling visual spreadsheets and infographics. Harness AI-powered Bulk Create to automatically generate thousands of design variations for advertising campaigns and marketing materials. Perfect for businesses scaling their creative output.\n\nEXTENSIVE TEMPLATE LIBRARY\nChoose from thousands of customizable templates for social media posts, business cards, flyers, invitations, logos, memes, and more. Every design is fully adaptable to match your unique brand and creative style.\n\nREAL-TIME COLLABORATION\nCollaborate seamlessly with team members in real-time. Share designs instantly, gather feedback, and work together on projects from anywhere. Ideal for creative teams, students, and professional organizations.\n\nUNLEASH YOUR CREATIVITY\nAccess thousands of high-quality templates, images, and design elements. Create professional designs with powerful AI features and bring your creative vision to life with industry-leading tools.\n\nCANVA FOR EDUCATION\nTransform your teaching with a school- and district-managed Canva experience built for the classroom. Create engaging visual learning materials with built-in moderation and age-appropriate controls for safe, collaborative lessons. Free for eligible K-12 teachers and students.\n\nTerms of Use: https://www.canva.com/policies/terms-of-use/\nPrivacy Policy: https://www.canva.com/policies/privacy-policy/",
              "reviews_count": 3454444,
              "rating": {
                "rating_type": "Max5",
                "value": 4.9,
                "votes_count": 3454444,
                "rating_max": 5
              },
              "price": {
                "current": 0
              },
              "is_free": true,
              "main_category": null,
              "categories": null,
              "languages": [
                "EN"
              ],
              "advisories": [
                "13+"
              ],
              "developer": "Canva",
              "developer_id": "897446218",
              "developer_url": "https://apps.apple.com/us/developer/canva/id897446218?platform=iphone",
              "version": "Version 4.217.0",
              "minimum_os_version": "Requires iOS 15.0 or later.",
              "size": "149 MB",
              "released_date": null,
              "last_update_date": "2026-07-15T05:14:41.000Z",
              "update_notes": "• NEW Magic Layers: Split any flat design into editable layers. Try it on generated images you've always wanted to edit.\n• NEW templates: Get inspiration from our new Winnie the Pooh and Devil Wears Prada 2 collections.\n• Presenter notes improvements: Write with custom AI prompts and track speaking time per slide.\n• Accessible PDFs: Designs exported as PDF now meet accessibility standards — readable by screen readers and assistive tools.\n\nNeed help? Visit canva.com/help\n\nHappy designing!",
              "images": [
                "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource211/v4/7f/c3/31/7fc331e8-18ce-79f6-9779-5268688d861c/0.png/512x512bb.jpg",
                "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource211/v4/2b/d3/11/2bd311eb-d59b-b912-b588-0c0e7325cd80/1.png/512x512bb.jpg"
              ],
              "similar_apps": [
                {
                  "app_id": "588013838",
                  "title": "VSCO: Photo & Video Editor",
                  "url": "https://apps.apple.com/us/app/vsco-photo-video-editor/id588013838"
                },
                {
                  "app_id": "587366035",
                  "title": "Picsart AI Photo Editor, Video",
                  "url": "https://apps.apple.com/us/app/picsart-ai-photo-editor-video/id587366035"
                }
              ],
              "more_apps_by_developer": [
                {
                  "app_id": "6757455363",
                  "title": "Canva Create",
                  "url": "https://apps.apple.com/us/app/canva-create/id6757455363"
                }
              ]
            }
          }
        }
      },
      {
        "app": {
          "id": "997362197",
          "store": "app_store",
          "url": "https://apps.apple.com/us/app/inshot-video-editor/id997362197",
          "title": "InShot - Video Editor",
          "icon": "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource221/v4/5b/99/d8/5b99d82c-f5d4-67d3-8065-46b37c57dec0/Placeholder.mill/512x512bb.jpg",
          "description": "InShot: Empowering Creators with Advanced Video and Photo Editing. Unlock effortless editing with easy-to-use features and powerful AI tools, elevating your video and photo editing experience to new heights.\n\n[AI Tool]\n- AI Effects. Experience the magic of AI with instant presets that elevate your images and videos in just one tap.\n- Auto Captions. AI-powered speech-to-text tool helps you say goodbye to manual text typing and makes video editing effortless.\n- Auto Remove Background. Remove background of videos/photos at the touch of a button.\n- Smart tracking. Make stickers/text move seamlessly in sync with your tracking object motion, adding dynamic flair to your videos.\n- Smooth slow-mo. Experience seamless slow-motion effects for buttery smooth videos.\n- Auto Adjust. Instantly enhance your images and videos with one-tap.\n- Smart collage. Make photo collages with AI Blend effects and Screenshot Stitch with effortless caption recognition.\n\n[Video editing]\n- Trim/Merge clips.\n- Reverse videos.\n- Add text, emoji and InShot exclusive stickers.\n- Add music, sound effects & voice-overs.\n- Add various-styles voice effects.\n- Speed control. Speed up/slow down video. Add speed ramping.\n- Keyframe editing. Add custome keyframe animations.\n- Chromakey. Easily edit green screen video.\n- Picture-in-Picture. Create multi-layered videos.\n\n[Filters, Effects & Transitions]\n- Lots of cinematic filters.\n- Unique effects such as Glitch, Fade, Noise, Beats, Weather, Retro DV, celebrate, etc.\n- AI effects. Clone, stroke, auto-blur, etc.\n- Combine clips with super transitions.\n\n[Photo Editing]\n- Add text and stickers to photos, make fun story.\n- Add filters and adjust brightness, contrast, curves, etc.\n\n[Photo Collage]\n- Easy-to-use photo grid collage maker.\n- Create seamless collages with AI Blend.\n- AI subtitle detection in Captions stitch mode.\n- High-quality pic stitch in horizontal/vertical way.\n\n[Share]\n- High video output resolution. Now InShot support save in 4K, 60fps.\n- Share to social apps, like YouTube, Twitter, Instagram, WhatsApp, etc.\n\n[InShot Pro Unlimited Subscription]\n- With an InShot Pro Unlimited subscription, you have access to all features and paid editing materials including stickers, filter packages, etc. Watermark and advertisements will be removed automatically.\n- InShot Pro Unlimited subscription is billed monthly or annually at the rate corresponding to the selected plan.\n- Payment will be charged to iTunes Account at confirmation of purchase.\n- Subscription automatically renews unless auto-renew is turned off at least 24-hours before the end of the current period.\n- Account will be charged for renewal within 24-hours prior to the end of the current period, and identify the cost of the renewal.\n- Subscriptions may be managed by the user and auto-renewal may be turned off by going to the user's Account Settings after purchase.\n- Any unused portion of a free trial period, if offered, will be forfeited when the user purchases a subscription to that publication, where applicable.\n\n[Terms of Use]\nhttps://inshot.cc/terms/terms.html\n\n[Privacy Policy]\nhttps://inshot.cc/terms/privacy.html\n\nFeel free to contact us: inshot.ios@inshot.com, your feedback and suggestions are important to us! For more InShot news and tutorials, follow us on YouTube @InShot Video Editor.\n\n[Disclaimer]:\nInShot is not affiliated, associated, sponsored, endorsed by, or in any way officially connected with YouTube, Instagram, TikTok, Facebook, Twitter.\n\nAcknowledgements:\nFUGUE Music\nhttps://icons8.com/music/",
          "developer": {
            "id": "1619465920",
            "name": "SHANTANU PTE. LTD.",
            "url": "https://apps.apple.com/us/developer/shantanu-pte-ltd/id1619465920?platform=iphone",
            "email": null,
            "address": null,
            "website": null
          },
          "rating": {
            "value": 4.9,
            "max": 5,
            "count": 2463552
          },
          "price": {
            "current": 0,
            "original": null,
            "currency": null,
            "is_free": true,
            "displayed": null
          },
          "reviews_count": 2463552,
          "category": null,
          "categories": null,
          "installs": null,
          "version": "Version 1.97.0",
          "minimum_os_version": "Requires iOS 15.0 or later.",
          "size": "254.7 MB",
          "released_at": null,
          "updated_at": "2026-06-07T16:07:38.000Z",
          "update_notes": "- AI Face Edit in Photo > Portrait\n- New Effects Pack: Fantasy\n- Bug fixes and other improvements\nAny ideas or suggestions? Don't hesitate to contact us at inshot.ios@inshot.com.\n\nFor more new feature tutorials and advanced video editing tips, please subscribe to our YouTube channel @InShotApp",
          "image_urls": [
            "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource221/v4/77/0a/82/770a82f7-8a04-2ef2-f559-de0ed4aabea5/44446605-d495-40f6-b5b5-f9b0b5b140fb_01-1.jpg/512x512bb.jpg",
            "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource221/v4/86/7c/c9/867cc94f-e9ec-c32e-b80f-b9104e7365c6/f0f29c32-fbe5-4476-ae94-be863a4c23ab_02.jpg/512x512bb.jpg"
          ],
          "languages": [
            "EN"
          ],
          "advisories": [
            "4+"
          ],
          "similar_apps": [
            {
              "id": "930380089",
              "title": "VideoShow AI Video Editor",
              "url": "https://apps.apple.com/us/app/videoshow-ai-video-editor/id930380089"
            },
            {
              "id": "1082956994",
              "title": "Filmmaker Pro - Video Editor",
              "url": "https://apps.apple.com/us/app/filmmaker-pro-video-editor/id1082956994"
            }
          ],
          "more_by_developer": [
            {
              "id": "1390423469",
              "title": "Peachy - AI Face & Body Editor",
              "url": "https://apps.apple.com/us/app/peachy-ai-face-body-editor/id1390423469"
            },
            {
              "id": "1481174327",
              "title": "Polish - AI Photo Editor",
              "url": "https://apps.apple.com/us/app/polish-ai-photo-editor/id1481174327"
            }
          ],
          "ext": {
            "appdata": {
              "type": "app_store_info_organic",
              "rank_group": 1,
              "rank_absolute": 1,
              "position": "left",
              "app_id": "997362197",
              "title": "InShot - Video Editor",
              "url": "https://apps.apple.com/us/app/inshot-video-editor/id997362197",
              "icon": "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource221/v4/5b/99/d8/5b99d82c-f5d4-67d3-8065-46b37c57dec0/Placeholder.mill/512x512bb.jpg",
              "description": "InShot: Empowering Creators with Advanced Video and Photo Editing. Unlock effortless editing with easy-to-use features and powerful AI tools, elevating your video and photo editing experience to new heights.\n\n[AI Tool]\n- AI Effects. Experience the magic of AI with instant presets that elevate your images and videos in just one tap.\n- Auto Captions. AI-powered speech-to-text tool helps you say goodbye to manual text typing and makes video editing effortless.\n- Auto Remove Background. Remove background of videos/photos at the touch of a button.\n- Smart tracking. Make stickers/text move seamlessly in sync with your tracking object motion, adding dynamic flair to your videos.\n- Smooth slow-mo. Experience seamless slow-motion effects for buttery smooth videos.\n- Auto Adjust. Instantly enhance your images and videos with one-tap.\n- Smart collage. Make photo collages with AI Blend effects and Screenshot Stitch with effortless caption recognition.\n\n[Video editing]\n- Trim/Merge clips.\n- Reverse videos.\n- Add text, emoji and InShot exclusive stickers.\n- Add music, sound effects & voice-overs.\n- Add various-styles voice effects.\n- Speed control. Speed up/slow down video. Add speed ramping.\n- Keyframe editing. Add custome keyframe animations.\n- Chromakey. Easily edit green screen video.\n- Picture-in-Picture. Create multi-layered videos.\n\n[Filters, Effects & Transitions]\n- Lots of cinematic filters.\n- Unique effects such as Glitch, Fade, Noise, Beats, Weather, Retro DV, celebrate, etc.\n- AI effects. Clone, stroke, auto-blur, etc.\n- Combine clips with super transitions.\n\n[Photo Editing]\n- Add text and stickers to photos, make fun story.\n- Add filters and adjust brightness, contrast, curves, etc.\n\n[Photo Collage]\n- Easy-to-use photo grid collage maker.\n- Create seamless collages with AI Blend.\n- AI subtitle detection in Captions stitch mode.\n- High-quality pic stitch in horizontal/vertical way.\n\n[Share]\n- High video output resolution. Now InShot support save in 4K, 60fps.\n- Share to social apps, like YouTube, Twitter, Instagram, WhatsApp, etc.\n\n[InShot Pro Unlimited Subscription]\n- With an InShot Pro Unlimited subscription, you have access to all features and paid editing materials including stickers, filter packages, etc. Watermark and advertisements will be removed automatically.\n- InShot Pro Unlimited subscription is billed monthly or annually at the rate corresponding to the selected plan.\n- Payment will be charged to iTunes Account at confirmation of purchase.\n- Subscription automatically renews unless auto-renew is turned off at least 24-hours before the end of the current period.\n- Account will be charged for renewal within 24-hours prior to the end of the current period, and identify the cost of the renewal.\n- Subscriptions may be managed by the user and auto-renewal may be turned off by going to the user's Account Settings after purchase.\n- Any unused portion of a free trial period, if offered, will be forfeited when the user purchases a subscription to that publication, where applicable.\n\n[Terms of Use]\nhttps://inshot.cc/terms/terms.html\n\n[Privacy Policy]\nhttps://inshot.cc/terms/privacy.html\n\nFeel free to contact us: inshot.ios@inshot.com, your feedback and suggestions are important to us! For more InShot news and tutorials, follow us on YouTube @InShot Video Editor.\n\n[Disclaimer]:\nInShot is not affiliated, associated, sponsored, endorsed by, or in any way officially connected with YouTube, Instagram, TikTok, Facebook, Twitter.\n\nAcknowledgements:\nFUGUE Music\nhttps://icons8.com/music/",
              "reviews_count": 2463552,
              "rating": {
                "rating_type": "Max5",
                "value": 4.9,
                "votes_count": 2463552,
                "rating_max": 5
              },
              "price": {
                "current": 0
              },
              "is_free": true,
              "main_category": null,
              "categories": null,
              "languages": [
                "EN"
              ],
              "advisories": [
                "4+"
              ],
              "developer": "SHANTANU PTE. LTD.",
              "developer_id": "1619465920",
              "developer_url": "https://apps.apple.com/us/developer/shantanu-pte-ltd/id1619465920?platform=iphone",
              "version": "Version 1.97.0",
              "minimum_os_version": "Requires iOS 15.0 or later.",
              "size": "254.7 MB",
              "released_date": null,
              "last_update_date": "2026-06-07T16:07:38.000Z",
              "update_notes": "- AI Face Edit in Photo > Portrait\n- New Effects Pack: Fantasy\n- Bug fixes and other improvements\nAny ideas or suggestions? Don't hesitate to contact us at inshot.ios@inshot.com.\n\nFor more new feature tutorials and advanced video editing tips, please subscribe to our YouTube channel @InShotApp",
              "images": [
                "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource221/v4/77/0a/82/770a82f7-8a04-2ef2-f559-de0ed4aabea5/44446605-d495-40f6-b5b5-f9b0b5b140fb_01-1.jpg/512x512bb.jpg",
                "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource221/v4/86/7c/c9/867cc94f-e9ec-c32e-b80f-b9104e7365c6/f0f29c32-fbe5-4476-ae94-be863a4c23ab_02.jpg/512x512bb.jpg"
              ],
              "similar_apps": [
                {
                  "app_id": "930380089",
                  "title": "VideoShow AI Video Editor",
                  "url": "https://apps.apple.com/us/app/videoshow-ai-video-editor/id930380089"
                },
                {
                  "app_id": "1082956994",
                  "title": "Filmmaker Pro - Video Editor",
                  "url": "https://apps.apple.com/us/app/filmmaker-pro-video-editor/id1082956994"
                }
              ],
              "more_apps_by_developer": [
                {
                  "app_id": "1390423469",
                  "title": "Peachy - AI Face & Body Editor",
                  "url": "https://apps.apple.com/us/app/peachy-ai-face-body-editor/id1390423469"
                },
                {
                  "app_id": "1481174327",
                  "title": "Polish - AI Photo Editor",
                  "url": "https://apps.apple.com/us/app/polish-ai-photo-editor/id1481174327"
                }
              ]
            }
          }
        }
      }
    ],
    "next_cursor": "eyJDdXJyZW50T2Zmc2V0IjoyMCwiUmVxdWVzdERhdGEiOnsibG9jYXRpb24iOm51bGwsImxhbmd1YWdlIjpudWxsLCJjYXRlZ29yaWVzIjpudWxsLCJ0aXRsZSI6InBob3RvIGVkaXRvciIsImRlc2NyaXB0aW9uIjpudWxsLCJzZWFyY2hfYWZ0ZXJfdG9rZW4iOm51bGwsIm9yZGVyX2J5IjpudWxsLCJsaW1pdCI6MjAsIm9mZnNldCI6bnVsbCwiYWlkIjo4NzM2OSwidXNlX2NhY2hlIjp0cnVlLCJ0YXNrX2lkIjoiMDcyNzE3NDItODczNi0wNTU2LTAwMDAtNzM0NmY3NjI3YmI0IiwiZmxhZ3MiOm51bGx9LCJSYXdRdWVyeSI6bnVsbCwiSWQiOm51bGwsIlNlYXJjaEFmdGVyRGF0YSI6WzM0OTQ4OC4wLCIxNDcwMzczMzMwIl0sIkV4ZWN1dG9yIjpudWxsfQ==",
    "total": 14180,
    "dropped": 0,
    "_warnings": [
      "app._category_drift: upstream path 'category_drift_probe' did not resolve"
    ]
  },
  "credits_used": 10,
  "credits_remaining": 9999,
  "request_id": "req_example000000",
  "cached": false,
  "pagination": {
    "next_cursor": "sc.eyJ2IjoyLCJjIjoiZXlKRGRYSnlaVzUwVDJabWMyVjBJam95TUN3aVVtVnhkV1Z6ZEVSaGRHRWlPbnNpYkc5allYUnBiMjRpT201MWJHd3NJbXhoYm1kMVlXZGxJanB1ZFd4c0xDSmpZWFJsWjI5eWFXVnpJanB1ZFd4c0xDSjBhWFJzWlNJNkluQm9iM1J2SUdWa2FYUnZjaUlzSW1SbGMyTnlhWEIwYVc5dUlqcHVkV3hzTENKelpXRnlZMmhmWVdaMFpYSmZkRzlyWlc0aU9tNTFiR3dzSW05eVpHVnlYMko1SWpwdWRXeHNMQ0pzYVcxcGRDSTZNakFzSW05bVpuTmxkQ0k2Ym5Wc2JDd2lZV2xrSWpvNE56TTJPU3dpZFhObFgyTmhZMmhsSWpwMGNuVmxMQ0owWVhOclgybGtJam9pTURjeU56RTNOREl0T0Rjek5pMHdOVFUyTFRBd01EQXROek0wTm1ZM05qSTNZbUkwSWl3aVpteGhaM01pT201MWJHeDlMQ0pTWVhkUmRXVnllU0k2Ym5Wc2JDd2lTV1FpT201MWJHd3NJbE5sWVhKamFFRm1kR1Z5UkdGMFlTSTZXek0wT1RRNE9DNHdMQ0l4TkRjd016Y3pNek13SWwwc0lrVjRaV04xZEc5eUlqcHVkV3hzZlE9PSIsInAiOiJvZmZzZXRfdG9rZW4ifQ",
    "has_more": true,
    "page_size": 20
  }
}

Live sample illustrating the unified response shape. Field values reflect the record you query.

API Details

How does the App Store App Listings Search API work?

Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.

Method

GET

Response

JSON

Why SocialCrawl

Why use SocialCrawl for App Store App Listings Search data?

We handle the complexity of App Store data extraction so you can focus on building. Unified schema, AI enrichment, and zero platform logic in your code.

Developer First

How do you scrape social media data in seconds?

The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 48 platforms covering 10B+ monthly active users.

One schema, every platform

Query 48 platforms with identical response structures. Write your integration once.

Computed fields, not just scraped

When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language — ready to use.

See your data before you code

Visual Data Explorer — paste any URL, get rich result cards, sortable tables, CSV export.

import requests

response = requests.get(
    'https://www.socialcrawl.dev/v1/tiktok/profile',
    params={'handle': 'charlidamelio'},
    headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json()
[ .JSON ]
{
  "success": true,
  "platform": "tiktok",
  "data": {
    "author": {
      "username": "charlidamelio",
      "followers": 152400000
    },
    "engagement": {
      "likes": 12400000000,
      "engagement_rate": 0.087
    },
    "metadata": {
      "language": "en",
      "content_category": "lifestyle"
    }
  }
}
+ 48 platforms
FAQ

Have a question? We got answers

Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.

Contact us
How do I query the App Store listings database via API?
Send a GET request to /v1/app_store/app-listings-search with a title plus optional filters. It queries a paginated listings database rather than the store-ranked app-search surface. Both endpoints use the 2-minute search cache; exact cache hits cost 0 credits, and Cache-Control: no-cache requests a billed refresh.
What makes app-listings-search different from app search?
App search returns current ranked store results. Exact repeat searches may use the 2-minute public cache; cache hits cost 0 credits, and Cache-Control: no-cache requests a billed refresh. App-listings-search searches a database by title with limit and offset pagination, filters, and a total match count, built for bulk analysis and dataset building rather than store-style lookup.
What does the platform-wide total give me?
Each response includes the total number of matching listings across the database, not just the current page. That total lets you size a result set, paginate confidently, and report how many iOS apps match a filter, unusual for a developer API.
How much does the App Store listings endpoint cost?
App-listings-search runs on the premium tier at 10 credits per call, reflecting the per-item paginated database query behind it. New accounts get 100 free credits with no card, and an empty result is refunded automatically.
Can I paginate and filter the listings?
Yes. Use limit (up to 50) and offset to page through the result set, then offset_token for deeper pages, and filters to narrow listings first. Each listing carries its numeric app id, so you can hand results straight to app-info or app-reviews.

Ask AI about SocialCrawl

Ready to scrape App Store App Listings Search data?

Get your API key and start pulling App Store data in under 60 seconds.

Start for free

🤖 AI agent or LLM? Read this page as markdown