API Reference
Get Bot Pricing
GET
/bot/{id}/pricinghttps://platform.skribby.io/api/v1/bot/{id}/pricingRetrieve the pricing breakdown for a specific bot. During the meeting, pricing components are returned but `total.amount` remains `null`. After completion, `total.amount` contains the final billable cost.
Path Parameters
| Name | Type | Description |
|---|---|---|
idrequired | string<uuid> | Bot ID |
Responses
Returns BotPricing
idstring<uuid>Bot ID
Example:
"550e8400-e29b-41d4-a716-446655440000"currencystringBilling currency
Allowed values:
USDbaseobjecttranscriptionobjectaddonsobject[]List of active addons
totalobjectRequest
curl -X GET \
"https://platform.skribby.io/api/v1/bot/{id}/pricing" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Response
200 OKapplication/json
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"currency": "USD",
"base": {
"rate_per_hour": 0.35
},
"transcription": {
"model": "deepgram-realtime-v3",
"rate_per_hour": 0.52,
"byok": false
},
"addons": [
{
"name": "video",
"rate_per_hour": 0.05
}
],
"total": {
"rate_per_hour": 0.92,
"amount": 0.72
}
}