Manage your API access and usage
Sign in to get your free API key.
{Math.max(0, maxDailyRequests - todayUsage).toLocaleString()} requests remaining today
Use this key to authenticate your API requests
For security reasons, the full API key is only shown once upon creation. If you've lost your key, you'll need to regenerate it.
Include your API key in the Authorization header for all requests:
GET /api/v1/top
Returns the top 50 coins by market cap.
GET /api/v1/market
Returns paginated market data with filtering and sorting options.
search - Search by coin name or symbolsortBy - Sort field: marketCap, currentPrice, change24h, volume24h, createdAt (default: marketCap)sortOrder - Sort order: asc, desc (default: desc)priceFilter - Price range: all, under1, 1to10, 10to100, over100 (default: all)changeFilter - Change filter: all, gainers, losers, hot, wild (default: all)page - Page number (default: 1)limit - Items per page, max 100 (default: 12)GET /api/v1/coin/{symbol}
Returns detailed information about a specific coin including price history.
symbol - Coin symbol (e.g., "TEST")timeframe - Optional. Chart timeframe: 1m, 5m, 15m, 1h, 4h, 1d (default: 1m)GET /api/v1/holders/{symbol}
Returns the top 50 holders of a specific coin.
symbol - Coin symbol (e.g., "TEST")limit - Number of holders to return, max 200 (default: 50)GET /api/v1/hopium
Returns prediction market questions with pagination and filtering options.
status - Filter by status: ACTIVE, RESOLVED, CANCELLED, ALL (default: ACTIVE)page - Page number (default: 1)limit - Items per page, max 100 (default: 20)GET /api/v1/hopium/{question_id}
Returns detailed information about a specific prediction market question including recent bets and probability history.
question_id - Question ID (e.g., 101)400 - Bad Request (invalid parameters)401 - Unauthorized (invalid or missing API key)404 - Not Found (coin/question doesn't exist)429 - Too Many Requests (rate limit exceeded)500 - Internal Server Error