DocumentationAuthentication

Authentication

All requests to the Muvx API require a valid API key passed in the Authorization header.

Header Format:

Authorization: Bearer <your_api_key>

Replace <your_api_key> with the actual key provided in your onboarding dashboard.


401 Unauthorized Response

{
  "success": false,
  "error": "unauthorized",
  "message": "Invalid/missing token"
}
Updated 4 months ago