curl --request GET \
--url https://api.mixpeek.com/v1/billing/pricing \
--header 'Authorization: Bearer <token>'{
"credit_rate_usd": 123,
"extractors": [
{
"feature_extractor_name": "<string>",
"description": "<string>",
"costs": {
"tier": 2,
"tier_label": "<string>",
"rates": [
{
"unit": "minute",
"credits_per_unit": 2,
"description": "<string>"
}
]
}
}
],
"tiers": [
{
"name": "<string>",
"limits": {},
"unlock_threshold": 123
}
]
}Public pricing reference. Returns extractor costs, tier limits, and the credit-to-USD rate. No authentication required.
curl --request GET \
--url https://api.mixpeek.com/v1/billing/pricing \
--header 'Authorization: Bearer <token>'{
"credit_rate_usd": 123,
"extractors": [
{
"feature_extractor_name": "<string>",
"description": "<string>",
"costs": {
"tier": 2,
"tier_label": "<string>",
"rates": [
{
"unit": "minute",
"credits_per_unit": 2,
"description": "<string>"
}
]
}
}
],
"tiers": [
{
"name": "<string>",
"limits": {},
"unlock_threshold": 123
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.mixpeek.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
USD cost per credit (e.g. 0.001 = $0.001/credit)
All available extractors with their cost rates
Show child attributes
Tier definitions with resource limits and unlock thresholds
Show child attributes
Was this page helpful?