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

# List products

> Retrieves a paginated list of products for the authenticated provider. Supports filtering by status, search term, and MCP Pay flag.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/sdk/products
openapi: 3.0.0
info:
  contact: {}
  description: The SolvaPay REST API specification
  title: SolvaPay REST API
  version: '1.0'
servers: []
security: []
tags: []
paths:
  /v1/sdk/products:
    get:
      tags:
        - Products
      summary: List products
      description: >-
        Retrieves a paginated list of products for the authenticated provider.
        Supports filtering by status, search term, and MCP Pay flag.
      operationId: ProductSdkController_listProducts
      parameters:
        - description: Max results (1-100)
          in: query
          name: limit
          required: false
          schema:
            example: 50
            type: number
        - description: Pagination offset
          in: query
          name: offset
          required: false
          schema:
            example: 0
            type: number
        - description: Search by name or description
          in: query
          name: search
          required: false
          schema:
            type: string
        - description: Filter by status
          in: query
          name: status
          required: false
          schema:
            enum:
              - active
              - inactive
              - suspended
            type: string
        - description: Filter MCP Pay products
          in: query
          name: isMcpPay
          required: false
          schema:
            type: boolean
      responses:
        '200':
          description: Products retrieved successfully
      security:
        - bearer: []
components: {}

````