# Shopify Apps ## Overview | Property | Value | |----------|-------| | **Status** | active | | **Method** | `GET` | | **Endpoint** | `/v2/shopify/apps` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/shopify-apps | ## Description Retrieve structured details about any Shopify App Store listing, including title, logo, screenshots, pricing plans, categories, and description. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/shopify/apps' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Lookup Judge.me app ```json { "url": "https://apps.shopify.com/judgeme", "logo": "https://cdn.shopify.com/app-store/listing_images/8cada0f5da411a64e756606bb036f1ed/icon/CIfp9fWd34sDEAE=.png", "title": "Judge.me Product Reviews App", "handle": "judgeme", "images": [ { "url": "https://cdn.shopify.com/app-store/listing_images/8cada0f5da411a64e756606bb036f1ed/desktop_screenshot/CJ3w-uC_140DEAE=.png?height=360&width=640", "description": "Collect unlimited reviews automatically from email, SMS, QR code" }, { "url": "https://cdn.shopify.com/app-store/listing_images/8cada0f5da411a64e756606bb036f1ed/desktop_screenshot/CPWYhuG_140DEAE=.png?height=360&width=640", "description": "Display reviews with Star Rating, Review Widget, Carousel & more" }, { "url": "https://cdn.shopify.com/app-store/listing_images/8cada0f5da411a64e756606bb036f1ed/desktop_screenshot/COzMkOG_140DEAE=.png?height=360&width=640", "description": "Collect and display reviews in customers' language automatically" } ], "pricing": [ { "name": "Forever Free", "price": "Free", "features": [ "Google rich snippets & Google MyBusiness", "Carousels (Video, Cards, Testimonials)", "Unlimited product and store reviews", "Sync with Shop App, Etsy, Amazon", "Unlimited visual reviews (photos/videos)", "Review widget & star rating badge", "Trust badge and medals", "Reviews importer & AliExpress sync" ] }, { "name": "Awesome", "price": "$15/month", "features": [ "Meta & TikTokShop sync, SocialMedia push", "Coupons & Referrals", "Google Shopping", "AI (replies, summary, translations)", "Full customization", "Advanced collection (auto-reminder, etc)", "130+ integrations, inc. Klaviyo, Gorgias", "16 widgets (Snippets, Q&A, Reviews Page)" ] } ], "categories": [], "description": "Sell more with unlimited product reviews, UGC, star ratings, and testimonials. Judge.me boosts conversion rate with unlimited product reviews, star ratings, and UGC (photo/video). Automate review requests after fulfillment or delivery, launch review widgets and testimonial sliders, boost visibility with Google reviews & SEO page." } ``` ### Lookup Yotpo Reviews app ```json { "url": "https://apps.shopify.com/yotpo-social-reviews", "logo": "https://cdn.shopify.com/app-store/listing_images/yotpo-reviews-icon.png", "title": "Yotpo Product Reviews & Photos", "handle": "yotpo-social-reviews", "images": [], "pricing": [ { "name": "Free", "price": "Free", "features": [ "Up to 50 Monthly Orders", "Sentiment and Profanity Check", "Automatic Review Requests", "Email Support", "Email Templates Library", "Display Reviews On-Site" ] }, { "name": "Starter", "price": "$15/month", "features": [ "Collect Photos/Video", "Reviews Carousel", "Google Shopping Ads", "Live Chat Support", "Google Rich Snippets", "Pricing changes based on order volume" ] }, { "name": "Pro", "price": "$119/month", "features": [ "Custom Questions", "AI Reviews Summary", "Smart Sorting", "Google Seller Rating", "Pricing changes based on order volume", "24/7 Technical Support" ] } ], "categories": [], "description": "Collect and display product reviews and ratings to showcase social proof and build trust. Yotpo product reviews and ratings drive sales and help you better understand your customers." } ``` ## Documentation ## Overview The Shopify Apps API scrapes any Shopify App Store listing page, returning structured data including the app title, logo, screenshots, pricing plans, categories, and description. ## Quickstart ``` GET https://api.piloterr.com/v2/shopify/apps?query=https://apps.shopify.com/judgeme ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | Full Shopify App Store listing URL | ## Response fields | Field | Type | Description | |---|---|---| | `title` | string | App name | | `handle` | string | App slug | | `logo` | string | App icon URL | | `images[].url` | string | Screenshot URL | | `pricing[].name` | string | Plan name | | `pricing[].price` | string | Plan price | | `pricing[].features` | array | Plan features | | `description` | string | Full app description | ## Notes - The `handle` is the URL slug at the end of the App Store URL. - Screenshots are returned in display order. ## Main use cases - Build Shopify app market intelligence dashboards tracking pricing across popular apps - Monitor competitor app descriptions and features for positioning analysis - Automate app discovery and cataloging for Shopify agency research - Track pricing plan changes over time for competitive landscape analysis