API Reference
Complete documentation for the HOT Network API endpoints
Authentication
All API requests require authentication using a valid wallet signature or API key.
Authorization: Bearer YOUR_API_KEY Content-Type: application/json
Endpoints
GET /api/creators
Fetch list of content creators
GET https://api.hot.network/v1/creators Query Parameters: - page: number - limit: number - category: string
POST /api/bookings
Create a new booking
POST https://api.hot.network/v1/bookings
Body: {
"creatorId": "string",
"serviceId": "string",
"date": "ISO8601",
"duration": number
}GET /api/hot-market-data
Get HOT token market data
GET https://api.hot.network/v1/hot-market-data
Response: {
"marketCap": number,
"volume": number,
"holders": number,
"change24h": number,
"realPrice": number
}Rate Limits
API requests are limited to 100 requests per minute per API key.
Error Codes
400Bad Request - Invalid parameters401Unauthorized - Invalid or missing authentication404Not Found - Resource doesn't exist429Too Many Requests - Rate limit exceeded500Internal Server Error