> ## 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/generated/account-billing/pricing.yml get /pricing/products
openapi: 3.1.0
info:
  contact:
    email: support@telnyx.com
  description: Browse the Telnyx product catalog and retrieve product pricing.
  title: Telnyx Pricing API
  version: 2.0.0
servers:
  - url: https://api.telnyx.com/v2
security:
  - bearerAuth: []
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
            default: 1
        - name: page_size
          in: query
          description: Number of items per page (max 100).
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
      responses:
        '200':
          description: Product catalog listing
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PricingProductListResponse'
        '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/pricing_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
    pricing_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
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````