App Store API
The app store data is accessible through our API for free without write access i.e. comments, and rates.
Find Apps
POST
/app_find
To find applications call the app_find endpoint: https://api.frames.sh/app_find
Headers
Content-Type
application/json
Body
page
required - number
The current page cursor for the search.
appId
optional - string or null
Application UUID
search
optional - string or null
Search term (alphanumeric and extra symbols including dash, space, and ampersand).
category
optional - string or null
application categories - delimited by pipe character |
- (see the categories list below).
type
optional - string or null
Application Type (see the types list below).
compact
optional - boolean
Show fewer details (useful for quick search i.e. searchbars).
sort
optional - JSON String
Sort the list by key i.e. { ratings: -1 }
Response
Example Request - Find Apps of each type
Example Request - Find App with ID
Example Request - Find App by Categories, sorted by ratings
Categories List
Below is the list of available categories for applications. Applications may have one or more categories. Categories are combined using the pipe character i.e. Other|Art|Music|NFT
Types List
Applications will have a unique type, it can be a frame, action, client, or other. Below is the list of available types for applications. Overview and All are token application types to indicate searching of all types of apps.
Pagination
The Page cursor for searches that are not of application type Overview or All are limited to 9 per page. Otherwise, the result will contain 9 apps for each non-token application types (Frame, Action, Client, and Other).
Accessing App Icons
App icon filenames are embedded in the search results with the icon
key. To access the app icons, pull the image at: https://api.frames.sh/public
i.e.:
https://api.frames.sh/public/e5fc49df-18e7-5cc0-8434-fd769360a746.png
Accessing App Thumbnails
App thumbnails are automatically pulled based on the app link's OG image or frame image and are hosted at https://proxy.frames.sh.
To access the app thumbnail, use the applications app_link
and remove the symbols in URI for the GET request i.e.: to retrieve https://moxie.xyz's app thumbnail use:
https://proxy.frames.sh/index/httpsmoxiexyz.png
Rate Limits
The current rate limit for find requests is currently set at 256 requests per 30 seconds. This rate limit is subject to change in the future.
Questions?
Let us know on contact@frames.sh.
Last updated