Connections
Manage provider connections for billing reconciliation.
List connections
GET
/api/v1/connections{
"connections": [
{
"id": "conn_01abc…",
"provider": "anthropic",
"status": "active",
"last_synced_at": "2026-05-04T06:00:00Z"
}
]
}
Add a connection
POST
/api/v1/connections{
"provider": "anthropic",
"api_key": "sk-ant-admin-…"
}
Delete a connection
DELETE
/api/v1/connections/{connection_id}Trigger a sync
POST
/api/v1/connections/{connection_id}/syncManually triggers a billing data pull for the connection. Syncs run automatically nightly.