| summary | Fireworks provider data sources: API key, account slug, and the 30-day spend billing summary. | |||
|---|---|---|---|---|
| read_when |
|
Fireworks is API-only for billing: there is no public credit-balance endpoint, so CodexBar shows the last 30 days of rated spend from the account billing summary API instead of a balance gauge.
- API key stored in
~/.codexbar/config.jsonor supplied viaFIREWORKS_API_KEY(legacy alias:FIREWORKS_KEY). - Account slug stored in
~/.codexbar/config.jsonor supplied viaFIREWORKS_ACCOUNT_SLUG.
The slug is the segment after /accounts/ in console URLs (e.g. the slug for
app.fireworks.ai/accounts/x0mh0x is x0mh0x). Fireworks does not expose a whoami endpoint, so the slug
cannot be derived from the API key and is required. Settings shows an API key field plus an Account slug field,
and the config validator flags a missing slug when a key is configured.
GET https://api.fireworks.ai/v1/accounts/{account_slug}/billing/summary?startTime=...&endTime=...- Request headers:
Authorization: Bearer <api key>,Accept: application/json - The 30-day window is sent explicitly (
startTime/endTimeas ISO 8601);granularityis not requested. - Response contains
lineItemswith ratedtotalCostentries (currencyCode,units,nanos). - CodexBar sums
units + nanos / 1e9across line items, using the first rated currency as the display currency and skipping rows in other currencies.
- The menu card shows the 30-day spend, e.g.
$0.53under a "Spend" label. - There is no session or weekly window — Fireworks does not expose per-window quota via API.
- HTTP 401/403 surfaces an invalid-key message, 429 a rate-limit message.
- There is no balance display; the Fireworks web console (app.fireworks.ai → Settings/Billing) is the authoritative balance source.
The native fetcher remains authoritative. A valid response with no rated line items intentionally produces a successful snapshot with no rate window, cost, or detail; the current plugin snapshot contract rejects that shape.
Sources/CodexBarCore/Providers/Fireworks/FireworksProviderDescriptor.swift(descriptor + fetch strategy)Sources/CodexBarCore/Providers/Fireworks/FireworksUsageFetcher.swift(HTTP client + JSON parser)Sources/CodexBarCore/Providers/Fireworks/FireworksSettingsReader.swift(env var resolution)Sources/CodexBar/Providers/Fireworks/FireworksProviderImplementation.swift(settings fields)Sources/CodexBar/Providers/Fireworks/FireworksSettingsStore.swift(SettingsStore extension)