Retrieves detailed information about a specific plan.
cURL
curl --request GET \ --url https://app.phonebot.io:80/api/v1/vendors/{vendorId}/plans/{planId}
{ "success": true, "timestamp": "2025-04-17T14:23:30Z", "message": "<string>", "data": { "id": "c4a9e3f8-a3b2-4d1c-8b7e-5a9f0d1e2c3b", "name": "Standard Tier", "includedInboundSeconds": 1000, "includedOutboundSeconds": 500, "inboundSecondsLimit": 5000, "outboundSecondsLimit": 2000, "inboundSecondPriceCent": 2, "outboundSecondPriceCent": 4, "inboundSecondOverusePriceCent": 3, "outboundSecondOverusePriceCent": 5, "enforceInboundSecondsLimit": true, "enforceOutboundSecondsLimit": false, "baseRecurringPriceCent": 1000 }, "traceId": "<string>" }
ID of the Vendor (UUID)
ID of the Plan (UUID)
Successfully retrieved plan details
Standard API response wrapper
Indicates if the request was successful
true
Response timestamp in ISO-8601 format
"2025-04-17T14:23:30Z"
Human-readable message
Payload data object
Show child attributes
Unique identifier of the plan (UUID).
"c4a9e3f8-a3b2-4d1c-8b7e-5a9f0d1e2c3b"
Name of the plan.
"Standard Tier"
Number of inbound minutes included in the base price.
1000
Number of outbound minutes included in the base price.
500
Hard limit for inbound minutes (usage stops if exceeded and enforce=true).
5000
Hard limit for outbound minutes (usage stops if exceeded and enforce=true).
2000
Price per inbound minute (within included amount, if applicable, otherwise standard rate). In Cents.
2
Price per outbound minute (within included amount, if applicable, otherwise standard rate). In Cents.
4
Price per inbound minute after included amount is used. In Cents.
3
Price per outbound minute after included amount is used. In Cents.
5
Whether to enforce the hard limit for inbound minutes.
Whether to enforce the hard limit for outbound minutes.
false
Base recurring price for the plan (e.g., monthly). In Cents.
Correlation or trace ID
Was this page helpful?