> ## Documentation Index
> Fetch the complete documentation index at: https://guide.omnia-voice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get pricing

> Retrieve current pricing information for voice calls.

This is a public endpoint and does not require authentication.




## OpenAPI

````yaml /openapi.yaml get /pricing
openapi: 3.0.0
info:
  title: Omnia Voice API
  description: >
    The Omnia Voice API allows you to programmatically manage voice agents,
    tools, phone numbers, and call logs.


    ## Authentication

    All API requests require an API key to be passed in the `X-API-Key` header.


    ## Rate Limiting

    API requests are rate limited to 1000 requests per hour per API key.
  version: 1.0.0
  contact:
    email: support@omnia-voice.com
servers:
  - url: https://api.omnia-voice.com/api/v1
    description: Production
  - url: https://dashboard.omnia-voice.com/api/v1
    description: Production (alias — same service)
security:
  - ApiKeyAuth: []
tags:
  - name: Agents
    description: Manage voice agents
  - name: Tools
    description: Manage agent tools and actions
  - name: Phone Numbers
    description: Manage phone number assignments
  - name: Calls
    description: Create and manage voice calls
  - name: Call Logs
    description: View call history and details
  - name: Pricing
    description: Get pricing information and calculate call costs
  - name: Configuration
    description: Get configuration options (voices, languages)
paths:
  /pricing:
    get:
      tags:
        - Pricing
      summary: Get pricing
      description: |
        Retrieve current pricing information for voice calls.

        This is a public endpoint and does not require authentication.
      operationId: getPricing
      responses:
        '200':
          description: Current pricing information
          headers:
            Cache-Control:
              schema:
                type: string
              description: Caching directive (public, max-age=3600)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Pricing'
              example:
                voiceCalls:
                  pricePerMinuteCents: 5
                  pricePerMinute: 0.05
                  currency: USD
                  minimumBilledMinutes: 1
                  roundingRule: up
                trial:
                  freeMinutes: 15
                wallet:
                  minimumTopUpCents: 1000
                  maximumTopUpCents: 500000
                  minimumTopUp: 10
                  maximumTopUp: 5000
                  currency: USD
      security: []
components:
  schemas:
    Pricing:
      type: object
      properties:
        voiceCalls:
          type: object
          properties:
            pricePerMinuteCents:
              type: integer
              description: Price per minute in cents
              example: 5
            pricePerMinute:
              type: number
              format: float
              description: Price per minute in dollars
              example: 0.05
            currency:
              type: string
              description: Currency code
              example: USD
            minimumBilledMinutes:
              type: integer
              description: Minimum billed duration in minutes
              example: 1
            roundingRule:
              type: string
              description: How duration is rounded
              example: up
        trial:
          type: object
          properties:
            freeMinutes:
              type: integer
              description: Free trial minutes for new users
              example: 15
        wallet:
          type: object
          properties:
            minimumTopUpCents:
              type: integer
              description: Minimum top-up amount in cents
              example: 1000
            maximumTopUpCents:
              type: integer
              description: Maximum top-up amount in cents
              example: 500000
            minimumTopUp:
              type: number
              description: Minimum top-up amount in dollars
              example: 10
            maximumTopUp:
              type: number
              description: Maximum top-up amount in dollars
              example: 5000
            currency:
              type: string
              description: Currency code
              example: USD
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key for authentication

````