Skip to content

API Documentation

Overview

The SaaS Auth API provides a complete authentication and authorization solution for SaaS applications. It includes user management, role-based access control, API key management, and more.

Features

  • User registration and authentication
  • JWT-based authentication with refresh tokens
  • Role-based access control (RBAC)
  • API key management with permission system
  • Rate limiting and request throttling
  • Audit logging for security events
  • Secure password management
  • Email verification workflows
  • Password reset functionality

API Endpoints

Authentication

EndpointMethodDescriptionAuthentication
/api/v1/auth/registerPOSTRegister a new userNone
/api/v1/auth/loginPOSTAuthenticate a userNone
/api/v1/auth/refreshPOSTRefresh access tokenNone
/api/v1/auth/logoutPOSTLogout (invalidate refresh token)None
/api/v1/auth/logout-allPOSTLogout from all devicesJWT
/api/v1/auth/reset-passwordPOSTRequest password resetNone
/api/v1/auth/reset-password/confirmPOSTConfirm password resetNone
/api/v1/auth/change-passwordPOSTChange user passwordJWT
/api/v1/auth/verify-emailPOSTVerify user emailNone
/api/v1/auth/resend-verificationPOSTResend verification emailJWT

Users

EndpointMethodDescriptionAuthenticationAuthorization
/api/v1/usersGETList all usersJWTAdmin role
/api/v1/usersPOSTCreate a new userJWTAdmin role
/api/v1/users/meGETGet current user profileJWTAny authenticated user
/api/v1/users/mePUTUpdate current user profileJWTAny authenticated user
/api/v1/users/:idGETGet a user by IDJWTAdmin role
/api/v1/users/:idPUTUpdate a userJWTAdmin role
/api/v1/users/:idDELETEDelete a userJWTAdmin role
/api/v1/users/:id/rolesGETGet user rolesJWTAdmin role
/api/v1/users/:id/rolesPOSTAdd a role to userJWTAdmin role
/api/v1/users/:id/roles/:roleIdDELETERemove a role from userJWTAdmin role

Roles

EndpointMethodDescriptionAuthenticationAuthorization
/api/v1/rolesGETList all rolesJWTAny authenticated user
/api/v1/rolesPOSTCreate a new roleJWTAdmin role
/api/v1/roles/:idGETGet a role by IDJWTAny authenticated user
/api/v1/roles/:idPUTUpdate a roleJWTAdmin role
/api/v1/roles/:idDELETEDelete a roleJWTAdmin role
/api/v1/roles/:id/permissionsGETGet role permissionsJWTAny authenticated user
/api/v1/roles/:id/permissionsPOSTAdd a permission to roleJWTAdmin role
/api/v1/roles/:id/permissions/:permissionIdDELETERemove a permission from roleJWTAdmin role

Permissions

EndpointMethodDescriptionAuthenticationAuthorization
/api/v1/permissionsGETList all permissionsJWTAny authenticated user
/api/v1/permissionsPOSTCreate a new permissionJWTAdmin role
/api/v1/permissions/:idGETGet a permission by IDJWTAny authenticated user
/api/v1/permissions/:idPUTUpdate a permissionJWTAdmin role
/api/v1/permissions/:idDELETEDelete a permissionJWTAdmin role

API Keys

EndpointMethodDescriptionAuthenticationAuthorization
/api/v1/api-keysGETList user’s API keysJWTAny authenticated user
/api/v1/api-keysPOSTCreate a new API keyJWTAny authenticated user
/api/v1/api-keys/:idGETGet an API key by IDJWTOwner of the API key
/api/v1/api-keys/:idPUTUpdate an API keyJWTOwner of the API key
/api/v1/api-keys/:idDELETEDelete an API keyJWTOwner of the API key
/api/v1/api-keys/:id/permissionsGETGet API key permissionsJWTOwner of the API key
/api/v1/api-keys/:id/permissionsPOSTAdd a permission to API keyJWTOwner of the API key
/api/v1/api-keys/:id/permissionsPUTSet all permissions for API keyJWTOwner of the API key
/api/v1/api-keys/:id/permissions/:permissionIdDELETERemove a permission from API keyJWTOwner of the API key

Health Check

EndpointMethodDescriptionAuthentication
/healthGETHealth check endpointNone

Authentication Methods

The API supports two authentication methods:

  1. JWT Authentication - Bearer token in the Authorization header

    Authorization: Bearer {your_access_token}
  2. API Key Authentication - API key in the X-API-Key header

    X-API-Key: {your_api_key}

Request & Response Examples

User Registration

Request:

POST /api/v1/auth/register
Content-Type: application/json
{
"email": "[email protected]",
"password": "securepassword123",
"first_name": "John",
"last_name": "Doe"
}

Response:

{
"message": "User registered successfully",
"user_id": "5f8d0d55-8b96-4536-8c34-781a9a3e9a9b"
}

User Login

Request:

POST /api/v1/auth/login
Content-Type: application/json
{
"email": "[email protected]",
"password": "securepassword123"
}

Response:

{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "bearer",
"expires_in": 900
}

Creating an API Key

Request:

POST /api/v1/api-keys
Content-Type: application/json
Authorization: Bearer {your_access_token}
{
"name": "My API Key",
"expires_at": "2025-12-31T23:59:59Z"
}

Response:

{
"id": "8a7b6c5d-4e3f-2a1b-0c9d-8e7f6a5b4c3d",
"user_id": "5f8d0d55-8b96-4536-8c34-781a9a3e9a9b",
"name": "My API Key",
"key": "sk-Avery1LongRandomAPIKeyStringThatShouldBeStoredSafely",
"prefix": "sk-Avery",
"is_active": true,
"expires_at": "2025-12-31T23:59:59Z",
"created_at": "2023-06-01T12:34:56Z",
"updated_at": "2023-06-01T12:34:56Z"
}

Error Responses

The API returns consistent error responses in the following format:

{
"error": "Description of the error",
"status": 400
}

For validation errors, the response includes field-specific errors:

{
"error": "Validation failed",
"fields": {
"email": "must be a valid email address",
"password": "must be at least 8 characters"
}
}

Rate Limiting

The API implements rate limiting to protect against abuse. Rate limits are applied per user or IP address.

When rate limits are exceeded, the API returns a 429 Too Many Requests response with headers indicating the limit and when the limit resets:

X-RateLimit-Limit: 100
X-RateLimit-Remaining: 0
X-RateLimit-Reset: 1623456789

Pagination

List endpoints support pagination with the following query parameters:

  • page - Page number (default: 1)
  • per_page - Number of items per page (default: 20, max: 100)

Paginated responses include metadata:

{
"users": [...],
"total_count": 42,
"page_count": 3,
"page": 1,
"page_size": 20
}