Buddy API v1

The Buddy API lets you read and manage notes, tasks and reminders programmatically. All requests use HTTPS and return JSON.

https://api.buddygpt.ru/v1/

Authentication

Every request must include a personal access token in the Authorization header. Tokens are issued in the app under Settings → Developer.

curl -H "Authorization: Bearer <token>" https://api.buddygpt.ru/v1/notes

Notes

MethodEndpointDescription
GET/v1/notesList notes (paginated)
POST/v1/notesCreate a note
GET/v1/notes/{id}Get a note
DELETE/v1/notes/{id}Delete a note

Tasks

MethodEndpointDescription
GET/v1/tasksList tasks, filter by due and status
POST/v1/tasksCreate a task
PATCH/v1/tasks/{id}Update a task

Rate limits

60 requests per minute per token. Exceeding the limit returns 429 Too Many Requests with a Retry-After header.