> ## Documentation Index
> Fetch the complete documentation index at: https://docs.threetone.in/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Phone Number Inventory

> Get the phone number inventory/catalog.

Returns all available countries, number types, and pricing.
This is used to display the phone number catalog in the frontend
before searching for specific numbers.

**No authentication required** - this is public pricing information.



## OpenAPI

````yaml https://api.threetone.in/openapi.json get /v1/phone-numbers/inventory
openapi: 3.1.0
info:
  title: Threetone API Documentation
  version: 1.0.0
servers:
  - url: https://api.threetone.in
    description: Production
security: []
paths:
  /v1/phone-numbers/inventory:
    get:
      tags:
        - Phone Numbers
      summary: Get Phone Number Inventory
      description: |-
        Get the phone number inventory/catalog.

        Returns all available countries, number types, and pricing.
        This is used to display the phone number catalog in the frontend
        before searching for specific numbers.

        **No authentication required** - this is public pricing information.
      operationId: phone_numbers_inventory
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PhoneNumberInventoryResponse'
components:
  schemas:
    PhoneNumberInventoryResponse:
      properties:
        countries:
          items:
            $ref: '#/components/schemas/CountryInventory'
          type: array
          title: Countries
        currency:
          type: string
          title: Currency
          default: INR
        markup_percentage:
          type: integer
          title: Markup Percentage
          description: Markup applied to provider pricing
          default: 20
      type: object
      required:
        - countries
      title: PhoneNumberInventoryResponse
      description: |-
        Complete phone number inventory/catalog.
        Shows all available countries and number types with pricing.
    CountryInventory:
      properties:
        country_code:
          type: string
          title: Country Code
          description: ISO 3166-1 alpha-2 country code
        country_name:
          type: string
          title: Country Name
          description: Human readable country name
        provider:
          type: string
          title: Provider
          description: twilio or vobiz
        number_types:
          items:
            $ref: '#/components/schemas/CountryNumberType'
          type: array
          title: Number Types
          description: Available number types with pricing
        flag_emoji:
          anyOf:
            - type: string
            - type: 'null'
          title: Flag Emoji
          description: Country flag emoji
      type: object
      required:
        - country_code
        - country_name
        - provider
        - number_types
      title: CountryInventory
      description: Phone number inventory for a specific country.
    CountryNumberType:
      properties:
        number_type:
          type: string
          title: Number Type
          description: local, mobile, or toll_free
        setup_fee:
          type: number
          title: Setup Fee
          description: One-time setup fee in provider currency
        monthly_fee:
          type: number
          title: Monthly Fee
          description: Monthly recurring fee in provider currency
        currency:
          type: string
          title: Currency
          description: Currency code (USD or INR)
        available:
          type: boolean
          title: Available
          description: Whether this type is available for purchase
          default: true
      type: object
      required:
        - number_type
        - setup_fee
        - monthly_fee
        - currency
      title: CountryNumberType
      description: Number type available in a country.

````