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

# List Product Catalog

> List every product available for your platform to request, along with your platform's current enablement status for each one.



## OpenAPI

````yaml GET /v1/platform/onboarding/products/catalog
openapi: 3.1.0
info:
  title: Finogate Platform API v1
  version: 0.1.0
servers:
  - url: https://api-sandbox.finogates.com
    description: Sandbox
  - url: https://api.finogates.com
    description: Production
security: []
tags:
  - name: auth
  - name: users
  - name: payees
  - name: verification
  - name: bank accounts
  - name: card processing
  - name: digital-assets
  - name: international
  - name: onboarding
  - name: pending-applications
  - name: wallets
  - name: payments
  - name: catalog
  - name: webhooks
  - name: phone-numbers
  - name: sms
  - name: calls
  - name: listings
  - name: embed-tokens
paths:
  /v1/platform/onboarding/products/catalog:
    get:
      tags:
        - onboarding
      summary: List Product Catalog
      description: >-
        List every product available for your platform to request, along with
        your platform's current enablement status for each one.
      operationId: list_product_catalog_v1_platform_onboarding_products_catalog_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/CommonResponse_list_ProductCatalogItemRead__
      security:
        - _AuthenticatedBearer: []
components:
  schemas:
    CommonResponse_list_ProductCatalogItemRead__:
      properties:
        status_code:
          type: integer
          title: Status Code
          description: HTTP status code for the response.
        data:
          items:
            $ref: '#/components/schemas/ProductCatalogItemRead'
          type: array
          title: Data
          description: Payload or error details.
        query_generated_time:
          type: integer
          title: Query Generated Time
          description: >-
            UTC timestamp (milliseconds since epoch) when response was
            generated.
      type: object
      required:
        - status_code
        - data
        - query_generated_time
      title: CommonResponse[list[ProductCatalogItemRead]]
    ProductCatalogItemRead:
      properties:
        id:
          type: string
          format: uuid
          title: Id
          description: Product UUID.
        code:
          type: string
          title: Code
          description: Stable product code.
        name:
          type: string
          title: Name
          description: Human-friendly product name.
        rail_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Rail Code
          description: Rail code the product belongs to.
        rail_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Rail Name
          description: Rail display name.
        kyc_required:
          type: boolean
          title: Kyc Required
          default: false
        kyb_required:
          type: boolean
          title: Kyb Required
          default: false
        mkyc_required:
          type: boolean
          title: Mkyc Required
          default: false
        activated:
          type: boolean
          title: Activated
          description: True when this platform has the product enabled.
        platform_product_status:
          anyOf:
            - type: integer
            - type: 'null'
          title: Platform Product Status
          description: This platform's enablement status for the product, if any.
      type: object
      required:
        - id
        - code
        - name
        - activated
      title: ProductCatalogItemRead
      description: A single platform-visible product in the onboarding catalog.
  securitySchemes:
    _AuthenticatedBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /v1/platform/auth/token

````