---
title: "List products"
method: GET
path: "/pricing/products"
tags: ["Pricing"]
---

# List products

`GET /pricing/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}.

## Query parameters

- `page[number]` integer
- `page[size]` integer

## Response `200`

Product catalog listing

- PricingProductListResponse
  - `data` PricingProduct[], required
    - `slug` string, required — Product identifier used in the per-product pricing endpoint.
    - `name` string, required — Display name of the product.
    - `description` string, required — Human-readable description of the product.
  - `meta` PricingPaginationMeta, required
    - `page_number` integer, required
    - `page_size` integer, required
    - `total_pages` integer, required
    - `total_results` integer, required

## Other responses

- `400` — Invalid pagination parameters

---

[API](https://skmtc.net/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.net/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/team-telnyx/telnyx-api-2/versions/8f5f4e537994/schema)
