Coins
Search Coins
Search for coins using keywords and advanced filtering options
GET
Search Coins
Endpoint
Authentication
This endpoint requires JWT authentication. Include your token in the Authorization header.
Query Parameters
The search term to query (searches name, symbol, and description)
Maximum number of results to return (e.g., 10, 20, 50)
Number of results to skip for pagination (e.g., 0, 10, 20)
Field to sort results by. Options:
created_timestamp- Sort by creation datemarket_cap- Sort by market capitalizationlast_reply- Sort by last activityreply_count- Sort by number of comments
Sort order. Options:
ASC- Ascending orderDESC- Descending order
Whether to include NSFW (Not Safe For Work) content in results
Filter by creator wallet address (leave empty to include all)
Filter by completion status:
true- Only show graduated coinsfalse- Only show active coins- Leave empty to show all
Filter by meta category/tag (leave empty for no filter)
Filter by coin type (leave empty for all types)
Response
Array of coin objects matching the search criteria
Total number of coins matching the search criteria (for pagination)
Code Examples
Response Example
Search Tips
Common Use Cases
Find New Launches
Search withsort=created_timestamp and order=DESC to find the newest coins:
Find Top Coins
Search by market cap to find the most valuable coins:Search by Creator
Find all coins created by a specific wallet:Find Graduated Coins
Search for coins that have completed their bonding curve:Notes
- All query parameters are required, but can be empty strings for filters you don’t want to apply
- The
searchTermparameter searches across name, symbol, and description fields - Empty
searchTermreturns all coins matching other filters - Replace
<your_token>with your actual JWT token - Use pagination (
limitandoffset) for large result sets
Related Endpoints
- Get Coin - Get details for a specific coin from search results
- List Coins - Simple coin listing without search
- Get Metadata - Get metadata for searched coins
Search Coins