components: schemas: pricing.v1.messaging: properties: links: nullable: true type: object name: nullable: true type: string url: format: uri nullable: true type: string type: object pricing.v1.messaging.messaging_country: properties: country: description: The name of the country nullable: true type: string iso_country: description: The ISO country code nullable: true type: string url: description: The absolute URL of the resource format: uri nullable: true type: string type: object pricing.v1.messaging.messaging_country-instance: properties: country: description: The name of the country nullable: true type: string inbound_sms_prices: description: The list of InboundPrice records items: properties: base_price: type: number current_price: type: number number_type: type: string type: object nullable: true type: array iso_country: description: The ISO country code nullable: true type: string outbound_sms_prices: description: The list of OutboundSMSPrice records items: properties: carrier: type: string mcc: type: string mnc: type: string prices: items: properties: base_price: type: number current_price: type: number number_type: type: string type: object type: array type: object nullable: true type: array price_unit: description: The currency in which prices are measured, in ISO 4127 format (e.g. usd, eur, jpy) nullable: true type: string url: description: The absolute URL of the resource format: uri nullable: true type: string type: object pricing.v1.phone_number: properties: links: nullable: true type: object name: nullable: true type: string url: format: uri nullable: true type: string type: object pricing.v1.phone_number.phone_number_country: properties: country: description: The name of the country nullable: true type: string iso_country: description: 'The ISO country code ' nullable: true type: string url: description: The absolute URL of the resource format: uri nullable: true type: string type: object pricing.v1.phone_number.phone_number_country-instance: properties: country: description: The name of the country nullable: true type: string iso_country: description: 'The ISO country code ' nullable: true type: string phone_number_prices: description: The list of PhoneNumberPrices records items: properties: base_price: type: number current_price: type: number number_type: type: string type: object nullable: true type: array price_unit: description: The currency in which prices are measured, in ISO 4127 format (e.g. usd, eur, jpy) nullable: true type: string url: description: The absolute URL of the resource format: uri nullable: true type: string type: object pricing.v1.voice: properties: links: nullable: true type: object name: nullable: true type: string url: format: uri nullable: true type: string type: object pricing.v1.voice.voice_country: properties: country: description: The name of the country nullable: true type: string iso_country: description: The ISO country code nullable: true type: string url: description: The absolute URL of the resource format: uri nullable: true type: string type: object pricing.v1.voice.voice_country-instance: properties: country: description: The name of the country nullable: true type: string inbound_call_prices: description: The list of InboundCallPrice records items: properties: base_price: type: number current_price: type: number number_type: type: string type: object nullable: true type: array iso_country: description: The ISO country code nullable: true type: string outbound_prefix_prices: description: The list of OutboundPrefixPrice records items: properties: base_price: type: number current_price: type: number friendly_name: type: string prefixes: items: type: string type: array type: object nullable: true type: array price_unit: description: The currency in which prices are measured, in ISO 4127 format (e.g. usd, eur, jpy) nullable: true type: string url: description: The absolute URL of the resource format: uri nullable: true type: string type: object pricing.v1.voice.voice_number: properties: country: description: The name of the country nullable: true type: string inbound_call_price: description: The InboundCallPrice record nullable: true properties: base_price: type: number current_price: type: number number_type: type: string type: object iso_country: description: The ISO country code nullable: true type: string number: description: The phone number nullable: true type: string outbound_call_price: description: The OutboundCallPrice record nullable: true properties: base_price: type: number current_price: type: number type: object price_unit: description: The currency in which prices are measured, in ISO 4127 format (e.g. usd, eur, jpy) nullable: true type: string url: description: The absolute URL of the resource format: uri nullable: true type: string type: object securitySchemes: accountSid_authToken: scheme: basic type: http info: contact: email: support@twilio.com name: Twilio Support url: https://support.twilio.com description: This is the public Twilio REST API. license: name: Apache 2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html termsOfService: https://www.twilio.com/legal/tos title: Twilio - Pricing version: 1.27.0 openapi: 3.0.1 paths: /v1/Messaging/Countries: description: Messaging pricing by country get: description: '' operationId: ListMessagingCountry parameters: - description: How many resources to return in each list page. The default is 50, and the maximum is 1000. in: query name: PageSize schema: maximum: 1000 minimum: 1 type: integer responses: '200': content: application/json: schema: properties: countries: items: $ref: '#/components/schemas/pricing.v1.messaging.messaging_country' type: array meta: properties: first_page_url: format: uri type: string key: type: string next_page_url: format: uri type: string page: type: integer page_size: type: integer previous_page_url: format: uri type: string url: format: uri type: string type: object title: ListMessagingCountryResponse type: object description: OK security: - accountSid_authToken: [] x-maturity: - GA servers: - url: https://pricing.twilio.com x-twilio: defaultOutputProperties: - country - outbound_sms_prices - inbound_sms_prices - price_unit pathType: list /v1/Messaging/Countries/{IsoCountry}: description: Messaging pricing by country get: description: '' operationId: FetchMessagingCountry parameters: - description: The [ISO country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) of the pricing information to fetch. in: path name: IsoCountry required: true schema: type: string responses: '200': content: application/json: schema: $ref: '#/components/schemas/pricing.v1.messaging.messaging_country-instance' description: OK security: - accountSid_authToken: [] x-maturity: - GA servers: - url: https://pricing.twilio.com x-twilio: defaultOutputProperties: - country - outbound_sms_prices - inbound_sms_prices - price_unit pathType: instance /v1/PhoneNumbers/Countries: description: Phone number pricing by country get: description: '' operationId: ListPhoneNumberCountry parameters: - description: How many resources to return in each list page. The default is 50, and the maximum is 1000. in: query name: PageSize schema: maximum: 1000 minimum: 1 type: integer responses: '200': content: application/json: schema: properties: countries: items: $ref: '#/components/schemas/pricing.v1.phone_number.phone_number_country' type: array meta: properties: first_page_url: format: uri type: string key: type: string next_page_url: format: uri type: string page: type: integer page_size: type: integer previous_page_url: format: uri type: string url: format: uri type: string type: object title: ListPhoneNumberCountryResponse type: object description: OK security: - accountSid_authToken: [] x-maturity: - GA servers: - url: https://pricing.twilio.com x-twilio: defaultOutputProperties: - country - price_unit pathType: list /v1/PhoneNumbers/Countries/{IsoCountry}: description: Phone number pricing by country get: description: '' operationId: FetchPhoneNumberCountry parameters: - description: The [ISO country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) of the pricing information to fetch. in: path name: IsoCountry required: true schema: type: string responses: '200': content: application/json: schema: $ref: '#/components/schemas/pricing.v1.phone_number.phone_number_country-instance' description: OK security: - accountSid_authToken: [] x-maturity: - GA servers: - url: https://pricing.twilio.com x-twilio: defaultOutputProperties: - country - price_unit pathType: instance /v1/Voice/Countries: description: Voice pricing by country get: description: '' operationId: ListVoiceCountry parameters: - description: How many resources to return in each list page. The default is 50, and the maximum is 1000. in: query name: PageSize schema: maximum: 1000 minimum: 1 type: integer responses: '200': content: application/json: schema: properties: countries: items: $ref: '#/components/schemas/pricing.v1.voice.voice_country' type: array meta: properties: first_page_url: format: uri type: string key: type: string next_page_url: format: uri type: string page: type: integer page_size: type: integer previous_page_url: format: uri type: string url: format: uri type: string type: object title: ListVoiceCountryResponse type: object description: OK security: - accountSid_authToken: [] x-maturity: - GA servers: - url: https://pricing.twilio.com x-twilio: defaultOutputProperties: - country - price_unit pathType: list /v1/Voice/Countries/{IsoCountry}: description: Voice pricing by country get: description: '' operationId: FetchVoiceCountry parameters: - description: The [ISO country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) of the pricing information to fetch. in: path name: IsoCountry required: true schema: type: string responses: '200': content: application/json: schema: $ref: '#/components/schemas/pricing.v1.voice.voice_country-instance' description: OK security: - accountSid_authToken: [] x-maturity: - GA servers: - url: https://pricing.twilio.com x-twilio: defaultOutputProperties: - country - price_unit pathType: instance /v1/Voice/Numbers/{Number}: description: Voice pricing for a specific phone number get: description: '' operationId: FetchVoiceNumber parameters: - description: The phone number to fetch. in: path name: Number required: true schema: type: string responses: '200': content: application/json: schema: $ref: '#/components/schemas/pricing.v1.voice.voice_number' description: OK security: - accountSid_authToken: [] x-maturity: - GA servers: - url: https://pricing.twilio.com x-twilio: defaultOutputProperties: - country - outbound_call_price - inbound_call_price - price_unit pathType: instance servers: - url: https://pricing.twilio.com x-maturity: - description: This product is Generally Available. name: GA