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

# List products

> Returns the full product catalog with pagination. Each entry contains a slug, display name, and description. Use the slug to fetch per-product pricing via GET /pricing/products/{slug}.



## OpenAPI

````yaml /openapi/source/external/pricing/pricing.json get /pricing/products
openapi: 3.1.0
info:
  version: 2.0.0
  title: Telnyx Pricing API
  description: >-
    Public, unauthenticated API for fetching real-time Telnyx product pricing.
    Returns the product catalog and per-product rate entries. No API key
    required.
  contact:
    email: support@telnyx.com
  license:
    name: MIT
    url: https://github.com/team-telnyx/edge-compute/blob/main/LICENSE
  x-latency-category: responsive
  x-endpoint-cost: light
servers:
  - url: https://api.telnyx.com/v2
    description: Production API
security: []
tags:
  - name: Pricing
    description: Public pricing operations
paths:
  /pricing/products:
    get:
      tags:
        - Pricing
      summary: List products
      description: >-
        Returns the full product catalog with pagination. Each entry contains a
        slug, display name, and description. Use the slug to fetch per-product
        pricing via GET /pricing/products/{slug}.
      operationId: listPricingProducts
      parameters:
        - name: page[number]
          in: query
          description: Page number (1-based).
          required: false
          schema:
            type: integer
            minimum: 1
            title: Page Number
            default: 1
        - name: page[size]
          in: query
          description: Number of items per page (max 100).
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            title: Page Size
            default: 20
      responses:
        '200':
          description: Product catalog listing
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PricingProductListResponse'
              example:
                data:
                  - slug: string
                    name: string
                    description: string
                meta:
                  page_number: 0
                  page_size: 0
                  total_pages: 0
                  total_results: 0
        '400':
          description: Invalid pagination parameters
      security: []
      x-codeSamples:
        - lang: JavaScript
          source: |-
            import Telnyx from 'telnyx';

            const client = new Telnyx({
              apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
            });

            // Automatically fetches more pages as needed.
            for await (const response of client.pricing.products.list()) {
              console.log(response);
            }
        - lang: Python
          source: |
            import os
            from telnyx import Telnyx

            client = Telnyx(
                api_key=os.environ.get("TELNYX_API_KEY"),  # This is the default and can be omitted
            )
            page = client.pricing.products.list()
            print(page.data)
        - lang: Go
          source: "package main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/team-telnyx/telnyx-go\"\n\t\"github.com/team-telnyx/telnyx-go/option\"\n)\n\nfunc main() {\n\tclient := telnyx.NewClient(\n\t\toption.WithAPIKey(\"My API Key\"),\n\t)\n\tproducts, err := client.Pricing.Products.List(context.TODO())\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf(\"%+v\\n\", products.Data)\n}\n"
        - lang: Java
          source: |-
            package com.telnyx.sdk.example;

            import com.telnyx.sdk.client.TelnyxClient;
            import com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;

            public final class Main {
                private Main() {}

                public static void main(String[] args) {
                    TelnyxClient client = TelnyxOkHttpClient.fromEnv();

                    var page = client.pricing().products().list();
                }
            }
        - lang: Ruby
          source: |-
            require "telnyx"

            telnyx = Telnyx::Client.new(api_key: "My API Key")

            page = telnyx.pricing.products.list

            puts(page)
        - lang: PHP
          source: >-
            <?php


            require_once dirname(__DIR__) . '/vendor/autoload.php';


            use Telnyx\Client;

            use Telnyx\Core\Exceptions\APIException;


            $client = new Client(apiKey: getenv('TELNYX_API_KEY') ?: 'My API
            Key');


            try {
              $page = $client->pricing->products->list();

              var_dump($page);
            } catch (APIException $e) {
              echo $e->getMessage();
            }
        - lang: CLI
          source: |-
            telnyx pricing:products list \
              --api-key 'My API Key'
components:
  schemas:
    PricingProductListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PricingProduct'
        meta:
          $ref: '#/components/schemas/PaginationMeta'
      required:
        - data
        - meta
    PricingProduct:
      type: object
      properties:
        slug:
          type: string
          description: Product identifier used in the per-product pricing endpoint.
        name:
          type: string
          description: Display name of the product.
        description:
          type: string
          description: Human-readable description of the product.
      required:
        - slug
        - name
        - description
    PaginationMeta:
      type: object
      properties:
        page_number:
          type: integer
        page_size:
          type: integer
        total_pages:
          type: integer
        total_results:
          type: integer
      required:
        - page_number
        - page_size
        - total_pages
        - total_results

````