Introduction
Welcome to the AdrenalineX API documentation. This guide explains the core endpoints, authentication, and response formats.
Quickstart
Fetch the full user list in seconds.
const response = await fetch('http://localhost:3000/api/users');
const data = await response.json();
console.log(data);
API Endpoints
All endpoints return JSON and use standard HTTP status codes.
Retrieve information about all users.
Retrieve information about a specific user, including profile details and balance.
Rate Limits
Stay within the limits to avoid 429 responses.