Developer API

Build on AdrenalineX with confidence

Modern endpoints, fast responses, and clean tooling. Use the AdrenalineX API to automate workflows, sync data, and power custom dashboards.

Get Support

Base URL

Use your local or production endpoint as needed.

Base http://localhost:3000

Rate Limits

Fair usage limits help keep the API stable for everyone.

Limit 100 requests / min

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.

GET /api/users

Retrieve information about all users.

GET /api/users/:userId

Retrieve information about a specific user, including profile details and balance.

Rate Limits

Stay within the limits to avoid 429 responses.

100 requests per minute If you exceed the limit, the API returns a 429 Too Many Requests response.