get_cost_estimate
Get an exact satoshi cost quote for AI services like text-to-speech, translation, and transcription. No payment required, just pass service parameters to receive amount, breakdown, and currency.
Instructions
Get an exact sat cost quote for a service BEFORE creating a payment. Useful for budget-aware agents to price-check before committing. No payment required, no side effects. Pass service=text-to-speech&chars=1500, service=translate&chars=800, service=transcribe-audio&minutes=5, etc. Returns { amount_sats, breakdown, currency }. Omit params to see the full catalog of supported services.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| service | No | Service id (e.g. 'text-to-speech', 'translate', 'image', 'video', 'transcribe-audio', 'ocr'). Omit to list all services. | |
| model | No | Optional model id for services with multiple tiers | |
| chars | No | Character count — required for TTS and translate | |
| minutes | No | Audio length — required for transcribe-audio | |
| seconds | No | Video duration — required for video / video-from-image | |
| pages | No | Page count — for OCR (default 1) |