API referenceEndpoints
Credit prices
GET /v1/credit_prices — current per-result prices for the four public categories.
GET /v1/credit_prices returns the current price per result for each
of the four public categories. Public read endpoint — no auth required.
Pricing
Free — no credits charged. See Pricing for the model behind the numbers this endpoint returns.
Endpoint
Authorization
ApiKeyAuth x-api-key<token>
Buzzabout API key, beginning with bz_live_ (or bz_test_ for staging-only keys).
In: header
Response Body
application/json
curl -X GET "https://example.com/v1/credit_prices"{
"status": "info",
"data": {
"ai_assistant": 15,
"audience_profile": 3,
"mention": 1,
"post_processing": 0.5
}
}Why this exists
So your agent or dashboard can ground cost reasoning in live prices without scraping the docs. The shape is flat and stable; new categories ship as additive fields.
{
"status": "success",
"data": {
"mention": 1,
"audience_profile": 3,
"post_processing": 0.5,
"ai_assistant": 15
}
}Pricing model context
See Pricing for which endpoints charge which category, and which categories are reservation-based.
Next steps
- Pricing — overview of all four categories.
GET /v1/me/usage_history— your account's charge feed.