Skip to content

Quickstart

The Bordio API gives you programmatic access to your workspace — tasks, events, projects and definitions — over a simple REST interface.

Create a secret key in your Bordio workspace settings. Each key is scoped: read or read-write, over a whole workspace or a single project. Keys look like brd_sk_live_….

Send the key as a bearer token:

Terminal window
curl https://api.bordio.com/public/v1/tasks \
-H "Authorization: Bearer brd_sk_live_..."

A successful response is wrapped in a data envelope:

{
"data": [
{ "id": "task_6a2918cff58b0a1d387866ee", "title": "Ship the API", "priority": "high" }
],
"pagination": { "next_cursor": null, "has_more": false }
}