Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.drpn.ai/llms.txt

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

Request shape

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "service.Name#Verb",
  "params": {}
}

Required headers

Content-Type: application/json
X-CSRF-Token: <csrf-token>
Authenticated calls also need the session cookie established by the login flow.

Success shape

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "ok": true
  }
}

Error shape

{
  "jsonrpc": "2.0",
  "id": 1,
  "error": {
    "code": -32000,
    "message": "Service error"
  }
}
Service-specific fields vary by method. They are documented from backend facade definitions and verified runtime responses.