Skip to main content
GET
/
api
/
v1
/
headless
/
bootstrap
Setup readiness report
curl --request GET \
  --url https://breadbox.example.com/api/v1/headless/bootstrap \
  --header 'X-API-Key: <api-key>'
{
  "version": "<string>",
  "encryption_key_set": true,
  "database": {
    "connected": true,
    "migrations_current": true,
    "migration_version": 123
  },
  "providers": [
    {
      "configured": true,
      "env": "<string>"
    }
  ],
  "users_count": 123,
  "login_accounts_count": 123,
  "api_keys_count": 123,
  "active_connections_count": 123,
  "scheduler_running": true,
  "first_run": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.breadbox.sh/llms.txt

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

Authorizations

X-API-Key
string
header
required

Breadbox API key with format bb_<base62>. Carries either read_only or full_access scope. Write endpoints (and a handful of sensitive reads — /api-keys, /users/{user_id}/login) require full_access; endpoints that require it are flagged in their description.

Response

Bootstrap report.

Readiness/setup summary consumed by breadbox doctor.

version
string
required

Server build version.

encryption_key_set
boolean
required

True when ENCRYPTION_KEY is set.

database
object
required
providers
object[]
required

Provider configuration status. Order is stable (plaid, teller).

users_count
integer<int64>
required

Household user count.

login_accounts_count
integer<int64>
required

Admin / dashboard login account count.

api_keys_count
integer<int64>
required

Active (un-revoked) API key count.

active_connections_count
integer<int64>
required

Bank connections in 'active' status.

scheduler_running
boolean
required

True when the sync scheduler has active cron entries.

first_run
boolean
required

True when login_accounts_count == 0 — the same signal used by the admin first-run redirect.