Skip to content

API Reference

Oath Bringer provides a RESTful API for programmatic access to all features.

Base URL

https://your-oath-bringer-url/api

Authentication

All API requests require authentication. See Authentication for details.

Sections

Response Format

All responses are JSON:

{
  "success": true,
  "data": { ... }
}

Error responses:

{
  "success": false,
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid or expired token"
  }
}