Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.pathors.com/llms.txt

Use this file to discover all available pages before exploring further.

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

Projects

Create and manage projects.

Agent Config

Configure agent settings (global prompt, execution mode, etc.).

Pathway

Read and modify conversation flow graphs (nodes and edges).

Tools

Manage tools available to the agent.

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