Skip to content

Endpoints

Buckets

Create a bucket

POST /v1/buckets
Request body
{
  "name": "my-first-bucket",
  "retention_days": 30
}

List buckets

GET /v1/buckets

Delete a bucket

DELETE /v1/buckets/{bucket}

Records

Create a record

POST /v1/buckets/{bucket}/records
Request body
{
  "name": "hello-world",
  "value": 42
}

Get a record

GET /v1/buckets/{bucket}/records/{name}

Delete a record

DELETE /v1/buckets/{bucket}/records/{name}

Webhooks

Create a webhook

POST /v1/webhooks
Request body
{
  "url": "https://example.com/webhooks/nimbus",
  "events": ["record.created", "record.deleted"]
}

List webhooks

GET /v1/webhooks