Skip to main content
The V1 REST API provides full programmatic access to manage your Pathors projects. All endpoints use Developer Key authentication.

Base URL

https://api.pathors.com/v1

Authentication

All V1 API requests require a Developer Key passed via the Authorization header:
Authorization: Bearer dk_your_developer_key_here
Developer keys can be created from the Pathors dashboard under Developer Keys.

Resources

Error Format

All errors follow a consistent format:
{
  "error": {
    "message": "Description of the error",
    "details": {}
  }
}
Status CodeDescription
400Validation error
401Invalid or missing developer key
403Insufficient permissions
404Resource not found
409Conflict (e.g., duplicate ID)
500Internal server error