Brault Developers

Who am I

Centralapi.brault.appthis host is the same in every region
GET
/v1/me

The brandspace, key, creator, plan and limits behind the presented API key — and, because this route is central, where the brandspace lives and which host to dial for its content. There is no separate region endpoint.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/me"
{  "object": "api_key_context",  "brandspace": {    "id": "clx1…",    "name": "Acme Studio",    "username": "acme",    "region": "us"  },  "key": {    "id": "string",    "name": "string",    "display": "bsk_us_a1b2c3d4_…wxyz",    "scopes": [      "files:read"    ],    "region": "us",    "region_stale": true,    "expires_at": "2019-08-24T14:15:22Z"  },  "created_by": {    "id": "string",    "name": "string"  },  "plan": {    "type": "pro",    "name": "Pro"  },  "limits": {    "burst_per_second": 0,    "sustained_per_minute": 0,    "monthly_requests": 0,    "uploads_per_day": 0,    "downloads_per_day": 0,    "search_per_minute": 0  },  "hosts": {    "central": "https://api.brault.app",    "regional": "https://us.api.brault.app"  }}