Search, view, and download iOS apps from the App Store in Raycast.
{ width="700" }
{ width="700" }
{ width="700" }
{ width="700" }
{ width="700" }
{ width="700" }
- Search: Quickly search for iOS apps by name, developer, or bundle ID
- Recent Searches: Automatically tracks your search history for quick access to previous queries
- Rich App Details: View comprehensive app information including ratings, screenshots, and metadata
- Download: Download IPA files directly to your computer
- Favorites: Save your favorite apps for quick access and export them to Markdown or CSV
- Download History: Track all your app downloads with sorting, filtering, and download count tracking
- Copy Actions: Easily copy app metadata like bundle ID, version, and App Store URLs
- Raycast AI Tools: Use AI commands to search, get details, and download iOS apps
- Logout: Securely revoke ipatool authentication and clear stored credentials
This extension requires Homebrew, a package manager for macOS. You can install it via the following command:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"Once you have Homebrew installed, install ipatool (version 2.3.1 or greater), a command-line tool for interacting with Apple's App Store using this command:
brew uninstall ipatool # Uninstall if already installed
brew install ipatoolThe extension automatically detects ipatool installation in common locations:
- Apple Silicon Macs:
/opt/homebrew/bin/ipatool(default Homebrew path) - Intel Macs:
/usr/local/bin/ipatool(default Homebrew path) - System installation:
/usr/bin/ipatool - User installations:
~/.local/bin/ipatool,~/bin/ipatool - PATH lookup: Any location in your system PATH
If your installation is in a different location, you can specify the custom path in the extension preferences.
The extension uses a dual-source approach to provide comprehensive app information:
- ipatool: Provides the core search functionality and app download capabilities
- iTunes API: Enriches the search results with additional metadata such as:
- High-resolution app icons and screenshots
- Ratings and reviews information
- Detailed app descriptions
- Release dates and version history
- Developer information and links
This combination ensures you get the most complete and up-to-date information about iOS apps.
The extension uses a sophisticated approach to extract high-resolution screenshots from the App Store by parsing Apple's "shoebox" JSON data embedded in App Store web pages.
-
JSON Extraction: The extension searches for
<script type="fastboot/shoebox" id="shoebox-media-api-cache-apps">elements in the App Store HTML -
Multi-layer JSON Parsing: The shoebox contains nested JSON structures that require multi-step parsing:
- Outer JSON object with app data keys
- Inner JSON strings that need separate parsing
- Deep path traversal to find screenshot data
-
Path Navigation: Screenshots are located at the path:
d[0].attributes.platformAttributes[platform].customAttributes.default.default.customScreenshotsByType
-
Device Type Mapping: The extension maps Apple's internal device identifiers to platform types:
iphone_6_5,iphone_d74→ iPhoneipadpro_2018,ipad_pro_129→ iPadappletv,apple_tv→ AppleTVapplewatch_2022,apple_watch→ AppleWatchapplevision,visionpro→ VisionPromac,macbook→ Mac
-
URL Enhancement: Screenshot URLs are automatically transformed to the highest resolution format
The shoebox parsing helper is designed to handle changes in Apple's App Store structure gracefully:
- Multiple Parsing Paths: Checks both platform-specific and fallback attribute paths
- Error Isolation: JSON parsing errors don't crash the entire process
- Partial Results: Returns any successfully parsed screenshots even if some fail
- Comprehensive Logging: Detailed logging helps diagnose parsing issues
- Fallback Values: Uses sensible defaults when structure changes
This extension requires you to authenticate with your Apple ID in order to search and download apps from the App Store. The authentication process is handled securely through ipatool:
- Your Apple ID credentials are never stored within the Raycast extension
- Authentication is handled directly by ipatool, which securely stores credentials in your system's keychain
- NEW: Authentication can now be completed directly within the Raycast UI with dedicated forms for both standard login and two-factor authentication
The extension provides the following commands:
- Search iOS Apps: Search for iOS apps on the App Store with automatic recent search tracking
- View Favorites: Access and manage your favorite apps with export capabilities
- Download History: View your complete download history with sorting and filtering options
- Logout: Revoke ipatool authentication and clear stored credentials
- Download Path: Directory where downloaded IPA files and screenshots are saved (default: ~/Downloads)
- Homebrew Path: Path to the Homebrew executable (default: /opt/homebrew/bin/brew)
- ipatool Path: Path to the ipatool executable (default: /opt/homebrew/bin/ipatool)
The extension allows you to control download performance through configurable concurrency settings:
- Max Concurrent Downloads: Controls how many screenshot downloads can happen simultaneously (default: 5, range: 1-10)
- Higher values = faster downloads but more system resources
- Lower values = slower downloads but lighter system load
- Recommended: 3-7 for most systems
- Download Timeout: Sets the maximum time to wait for individual screenshot downloads (default: 90 seconds, minimum: 30 seconds)
- Longer timeouts help with slow connections or large images
- Shorter timeouts prevent hanging on failed downloads
- The extension automatically retries failed downloads
- Max Stall Timeout: Timeout when no progress is made during downloads (default: 30000 milliseconds)
- Cleanup Temporary Files: Automatically clean up temporary files when the extension exits (default: enabled)
- Integrity Verification: Level of file integrity verification to perform
- Basic: Quick file size and existence checks (default)
- Checksum: Full checksum verification for downloaded files
- Off: No integrity verification
- Verbose Logging: Enable detailed console logging for debugging purposes (default: disabled)
You can control which device platforms to include when downloading screenshots:
- iPhone: Enabled by default - includes iPhone screenshots in all sizes
- iPad: Enabled by default - includes iPad screenshots and iPad Pro variants
- Mac: Disabled by default - includes macOS app screenshots
- Apple TV: Disabled by default - includes tvOS app screenshots
- Apple Watch: Disabled by default - includes watchOS app screenshots
- Vision Pro: Disabled by default - includes visionOS app screenshots
How Platform Preferences Affect Scraping:
- Screenshots are always extracted from the App Store for all available platforms
- Platform preferences only control which screenshots are actually downloaded and saved
- Disabled platforms are skipped during download, saving time and storage space
- The scraping process provides detailed feedback about available vs. downloaded screenshots per platform
- Platform-specific progress tracking shows real-time download status for each enabled platform
The Favorites feature allows you to save apps for quick access:
- Add to Favorites: Star any app from search results or app details
- Quick Access: View all your favorite apps in one place
- Export Options: Export your favorites list to Markdown or CSV format
- Persistent Storage: Favorites are stored securely using Raycast's storage API
Track all your app downloads with comprehensive history management:
- Automatic Tracking: Every download is automatically recorded with timestamp and count
- Download Counter: See how many times you've downloaded each app
- Sorting Options: Sort by most recent, oldest, most downloaded, least downloaded, or name
- Search & Filter: Quickly find apps in your history by name, developer, or bundle ID
- Quick Actions: Re-download apps, add to favorites, or remove individual history items
- History Limit: Stores up to 100 most recent downloads
The extension automatically tracks your search history:
- Automatic Tracking: Search queries are saved automatically
- Quick Access: Recent searches appear when you open the search command
- One-Click Search: Click any recent search to instantly re-run that query
- History Management: Remove individual searches or clear all history
Downloaded apps are saved as IPA files to your specified downloads directory (defaults to ~/Downloads). The files are automatically renamed to a user-friendly format: {App Name} {Version}.ipa.
Screenshots are downloaded at the highest resolution and saved to the downloads directory with platform-specific organization.
This extension:
- Does not collect or transmit any personal data
- Only communicates with Apple's servers via the
ipatoolCLI and iTunes API - Stores no credentials within the extension itself
- Two-factor authentication is fully supported
- The extension automatically detects if you're already authenticated
- NEW: In-UI authentication forms provide a seamless experience without leaving Raycast
- Dedicated login form for entering Apple ID credentials
- Two-factor authentication form with automatic code detection
- Real-time validation and error feedback
- Secure credential handling with no storage in the extension
When you first attempt to search or download an app, you'll be prompted to authenticate if needed. The new in-UI forms make this process quick and intuitive. After successful authentication, you shouldn't have to re-authenticate for future operations.
The Keychain item that controls ipatool's session is created by ipatool itself (usually named ipatool-auth.service). macOS may prompt the first time Raycast (or ipatool) accesses this item. You can reduce or eliminate repeated prompts by adjusting the item's Access Control:
- Open Keychain Access and search for
ipatool-auth.service. - Double‑click the item → open the "Access Control" tab.
- Choose one of the following:
- Recommended: Keep "Confirm before allowing access" but add specific apps to "Always allow access by these applications":
- Click the
+button and add the actualipatoolbinary.- On Apple Silicon (Homebrew):
/opt/homebrew/bin/ipatool→ then right‑click → "Show Original" to add the real binary under/opt/homebrew/Cellar/ipatool/<version>/bin/ipatool(avoid adding just the symlink). - On Intel (Homebrew):
/usr/local/bin/ipatool→ similarly add the original under/usr/local/Cellar/ipatool/<version>/bin/ipatool.
- On Apple Silicon (Homebrew):
- Optionally add
Raycast.appif the flow originates in Raycast and you still see prompts.
- Click the
- Less secure: Select "Allow all applications to access this item" (not recommended).
- Recommended: Keep "Confirm before allowing access" but add specific apps to "Always allow access by these applications":
- Click "Save Changes".
Notes:
- The extension does not create or modify
ipatool-auth.service; it is owned byipatool. - The extension may store your Apple ID password in a separate Keychain entry named
ios-apps-apple-password(service), which is independent ofipatool's item and does not change its ACL. - There is no programmatic way in this extension to set the Keychain ACL default; macOS manages it for security.
This extension provides several AI tools that can be used with Raycast AI to enhance your workflow:
Search for iOS apps on the App Store by name or keyword.
Search @ios-apps SpotifyOptions:
query: The search query for finding iOS apps (required)limit: Maximum number of results to return (optional, default: 10, max: 20)
Get detailed information about an iOS app by name or search term.
Get @ios-apps details for "Airbnb"Get the current version of an iOS app by name or search term.
Get @ios-apps What's the latest version of Airbnb?Options:
query: The name or search term for the iOS app (required)
Download an iOS app directly to your computer.
Download @ios-apps "Instagram"Options:
query: The name or search term for the iOS app (required)
The download tool will search for the app, retrieve its details, and download the IPA file to your specified download directory.
The Logout command provides a secure way to manage your authentication:
- Revoke Authentication: Removes ipatool authentication from your system keychain
- Clear Credentials: Clears any stored Apple ID credentials from the extension
- Fresh Start: Useful when switching Apple IDs or troubleshooting authentication issues
Downloaded apps are saved as IPA files to your specified downloads directory (defaults to ~/Downloads). The files are automatically renamed to a user-friendly format: {App Name} {Version}.ipa.
- Authentication Failures: If you're having trouble authenticating, try running
ipatool auth logindirectly in your terminal - Download Errors: Make sure you have sufficient disk space and permissions to write to your downloads directory
- Search Not Working: Verify that ipatool is correctly installed and accessible from the path specified in preferences
- ipatool by Majd Alfhaily
- iTunes Search API by Apple
- Windsurf
- Claude 4 Sonnet by Anthropic
- Warp