estimate_sms_cost
Calculate SMS pricing and message segmentation before sending, using recipient number and message content to provide cost estimates.
Instructions
Estimate cost and message segments for SMS without sending it
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Sender phone number or name (optional, uses default if not specified) | |
message | Yes | SMS message content to estimate cost for | |
to | Yes | Recipient phone number with country code (e.g., +46XXXXXXXXX for Swedish numbers) |
Input Schema (JSON Schema)
{
"properties": {
"from": {
"description": "Sender phone number or name (optional, uses default if not specified)",
"type": "string"
},
"message": {
"description": "SMS message content to estimate cost for",
"type": "string"
},
"to": {
"description": "Recipient phone number with country code (e.g., +46XXXXXXXXX for Swedish numbers)",
"type": "string"
}
},
"required": [
"to",
"message"
],
"type": "object"
}