cURL
curl \
--request GET \
--url "https://api.breeze.blue/v1/api-keys/current" \
--header "xi-api-key: $BREEZE_API_KEY"{
"api_key": {
"id": "<string>",
"name": "<string>",
"prefix": "<string>",
"status": "<string>",
"credit_limit": 123,
"credit_used": 0,
"credit_reserved": 0,
"credit_remaining": 123
}
}{
"code": "<string>",
"detail": "<string>",
"error": "<string>",
"ok": false,
"meta": {}
}Account
Get the current API key
Return the API key that authenticated this request, including its status and Key Budget counters. Use it to check whether a key is still usable before starting work. The budget is read fresh on every call, no credits are reserved, and an exhausted budget still returns 200 with credit_remaining at 0. Browser sessions are not accepted on this endpoint.
GET
/
v1
/
api-keys
/
current
cURL
curl \
--request GET \
--url "https://api.breeze.blue/v1/api-keys/current" \
--header "xi-api-key: $BREEZE_API_KEY"{
"api_key": {
"id": "<string>",
"name": "<string>",
"prefix": "<string>",
"status": "<string>",
"credit_limit": 123,
"credit_used": 0,
"credit_reserved": 0,
"credit_remaining": 123
}
}{
"code": "<string>",
"detail": "<string>",
"error": "<string>",
"ok": false,
"meta": {}
}
