Base URL & Versioning

API base URL, versioning strategy, and request format.

Base URL

All API requests are made to:

https://api.praxiomai.xyz/api

In development, the API runs at http://localhost:8000/api.

Authentication

All requests require a valid Clerk JWT token in the Authorization header:

Authorization: Bearer <clerk_jwt_token>

Request Format

  • All request bodies must be JSON (Content-Type: application/json)
  • All responses return JSON
  • Dates use ISO 8601 format (2026-03-27T10:30:00Z)

Rate Limiting

API requests are rate-limited per user. Current limits:

PlanRequests/minute
Trial30
Pro120
Growth300

Was this helpful?