API Status: Online

🚀 Welcome to the Mahamudul Hasan Multi-Authentication rest API

A high-performance API with full CRUD functionality. Explore the endpoints below.

Explore more projects on GitHub or view the Raw Docs.

GET/users
Fetch all users
// Fetch API Example
fetch('https://your-api-url.com/users')
  .then(res => res.json())
  .then(data => console.log(data));
GET/secure
Requires API Key
# cURL Example
curl -H "X-API-KEY: your_api_key_here" https://your-api-url.com/secure
GET/admin/users
Requires Basic Auth
# cURL Example
curl -u "admin_user:admin_pass" https://your-api-url.com/admin/users