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
| Method | Endpoint | Description |
|---|---|---|
| GET | /v1/notes | List notes (paginated) |
| POST | /v1/notes | Create a note |
| GET | /v1/notes/{id} | Get a note |
| DELETE | /v1/notes/{id} | Delete a note |
Tasks
| Method | Endpoint | Description |
|---|---|---|
| GET | /v1/tasks | List tasks, filter by due and status |
| POST | /v1/tasks | Create 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.