Skip to main content
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 date
  • market_cap - Sort by market capitalization
  • last_reply - Sort by last activity
  • reply_count - Sort by number of comments
string
required
Sort order. Options:
  • ASC - Ascending order
  • DESC - 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 coins
  • false - 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

Effective Search Strategies:
  1. Broad to Narrow: Start with general terms, then add filters
  2. Use Sorting: Sort by market_cap to find established coins or created_timestamp for new launches
  3. Pagination: Use limit and offset to implement infinite scroll or pagination
  4. Creator Filter: Search for coins by a specific creator using their wallet address

Common Use Cases

Find New Launches

Search with sort=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 searchTerm parameter searches across name, symbol, and description fields
  • Empty searchTerm returns all coins matching other filters
  • Replace <your_token> with your actual JWT token
  • Use pagination (limit and offset) for large result sets
  • 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