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
string
required
The search term to query (searches name, symbol, and description)
number
required
Maximum number of results to return (e.g., 10, 20, 50)
number
required
Number of results to skip for pagination (e.g., 0, 10, 20)
string
required
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
string
required
Sort order. Options:
ASC- Ascending orderDESC- Descending order
boolean
required
Whether to include NSFW (Not Safe For Work) content in results
string
required
Filter by creator wallet address (leave empty to include all)
boolean
required
Filter by completion status:
true- Only show graduated coinsfalse- Only show active coins- Leave empty to show all
string
required
Filter by meta category/tag (leave empty for no filter)
string
required
Filter by coin type (leave empty for all types)
Response
array
Array of coin objects matching the search criteria
number
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