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

# List products

> Get all products for a specific store with filtering, sorting, and pagination



## OpenAPI

````yaml /openapi.json post /api/public/v1/products/list
openapi: 3.0.3
info:
  title: TagadaPay API
  description: >-

    # TagadaPay API Documentation


    Welcome to the TagadaPay API. This REST API lets you process payments,
    manage subscriptions, handle customers, deploy plugins, and orchestrate
    checkout funnels — all programmatically.


    ## Authentication


    Authenticate every request with a Bearer token. Get your API key from the
    [TagadaPay Dashboard](https://app.tagada.io).


    ```

    Authorization: Bearer your-api-key

    ```


    All requests must be made over HTTPS with `Content-Type: application/json`.


    ## Rate Limits


    | Plan | Requests/min | Burst |

    |------|-------------|-------|

    | Standard | 100 | 150 |

    | Premium | 500 | 750 |


    Exceeding the limit returns `429 Too Many Requests`.


    ## Errors


    | Code | Meaning |

    |------|---------|

    | 400 | Bad request — invalid parameters |

    | 401 | Unauthorized — missing or invalid API key |

    | 403 | Forbidden — insufficient permissions |

    | 404 | Not found |

    | 409 | Conflict |

    | 429 | Rate limited |

    | 500 | Server error |


    ## Support


    - Email: api-support@tagada.io

    - Docs: [docs.tagadapay.com](https://docs.tagadapay.com)
        
  version: 1.0.0
servers:
  - url: https://api.tagada.io/
    description: Production
  - url: https://api.tagada.dev/
    description: Sandbox / Development
security:
  - bearerAuth: []
tags:
  - name: auth
    description: Test your API key and verify authentication.
  - name: stores
    description: Create and manage stores within your account.
  - name: products
    description: Create products with variants, prices, and currency options.
  - name: customers
    description: Manage customer records, addresses, and payment instruments.
  - name: orders
    description: List and retrieve orders with line items, payments, and metadata.
  - name: payments
    description: Process, list, refund, void, and dispute payments.
  - name: subscriptions
    description: >-
      Create and manage recurring subscriptions — billing, cancellation,
      rebilling, and processor changes.
  - name: payment-flows
    description: Configure payment routing strategies with cascading processor fallbacks.
  - name: payment-instruments
    description: >-
      Manage stored payment methods — cards, bank accounts, and tokenized
      instruments.
  - name: processors
    description: List connected payment processors (Stripe, NMI, Checkout.com, etc.).
  - name: promotions
    description: Create and manage discount promotions with rules and conditions.
  - name: promotion-codes
    description: Generate and manage reusable promotion/coupon codes.
  - name: block-rules
    description: >-
      Configure fraud prevention rules to block transactions by IP, email, card
      BIN, country, etc.
  - name: webhooks
    description: Register webhook endpoints to receive real-time event notifications.
  - name: events
    description: Query application events, statistics, and audit logs.
  - name: domains
    description: Add, verify, and manage custom domains for your checkout and funnels.
  - name: funnels
    description: >-
      Create and manage checkout funnels with routing, A/B testing, and CDN
      deployment.
  - name: funnel-sessions
    description: Retrieve funnel session data for analytics and debugging.
  - name: funnel-tracking
    description: Track funnel step events for conversion analytics.
  - name: plugins
    description: Deploy, manage, and configure checkout plugins.
  - name: plugins-v2
    description: >-
      V2 plugin system — deploy, mount, split-test, fork, promote, and manage
      plugin instances.
  - name: checkout
    description: >-
      Initialize checkout sessions and process payments through the hosted
      checkout.
  - name: 3ds
    description: >-
      3D Secure authentication — create sessions, authenticate, and handle
      challenges.
  - name: builder
    description: Generate and validate builder session tokens for the visual page editor.
  - name: health
    description: API health check endpoint.
  - name: test
    description: Test and debugging utilities for the event system (sandbox only).
paths:
  /api/public/v1/products/list:
    post:
      tags:
        - products
      summary: List products
      description: >-
        Get all products for a specific store with filtering, sorting, and
        pagination
      operationId: post-api-public-v1-products-list
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                storeId:
                  type: string
                page:
                  type: integer
                  nullable: true
                per_page:
                  type: integer
                  minimum: 1
                  maximum: 1000
                  default: 30
                  nullable: true
                sort:
                  type: string
                  enum:
                    - name
                    - description
                    - price
                    - created_at
                  default: created_at
                  nullable: true
                sort_order:
                  type: string
                  enum:
                    - asc
                    - desc
                  default: desc
                  nullable: true
                filters:
                  type: object
                  properties:
                    name:
                      type: string
                  additionalProperties: false
                includeVariants:
                  type: boolean
                  default: false
                  nullable: true
              required:
                - storeId
                - page
              additionalProperties: false
            examples:
              basic:
                summary: Basic product list
                value:
                  storeId: store_123
                  page: 1
                  per_page: 20
              filtered:
                summary: Filtered products
                value:
                  storeId: store_123
                  page: 1
                  per_page: 50
                  sort: name
                  sort_order: asc
                  filters:
                    name: premium
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                        description:
                          type: string
                          nullable: true
                        image:
                          type: string
                          nullable: true
                        active:
                          type: boolean
                          nullable: true
                        isShippable:
                          type: boolean
                          nullable: true
                        isTaxable:
                          type: boolean
                          nullable: true
                        autoSync:
                          type: boolean
                          nullable: true
                        unitLabel:
                          type: string
                          nullable: true
                        accountingCode:
                          type: string
                          nullable: true
                        taxCategory:
                          type: string
                          nullable: true
                        mappedTaxCategory:
                          type: object
                          properties:
                            id:
                              type: string
                            slug:
                              type: string
                            label:
                              type: string
                            taxjarCode:
                              type: string
                              nullable: true
                          required:
                            - id
                            - slug
                            - label
                            - taxjarCode
                          additionalProperties: false
                          nullable: true
                        price:
                          type: object
                          properties:
                            recurring:
                              type: boolean
                            interval:
                              type: string
                              nullable: true
                            intervalCount:
                              type: number
                              nullable: true
                            billingTiming:
                              type: string
                              nullable: true
                            currencyOptions:
                              type: object
                              additionalProperties:
                                type: object
                                properties:
                                  amount:
                                    type: number
                                required:
                                  - amount
                                additionalProperties: false
                              nullable: true
                            addDeliveryOnRebill:
                              type: boolean
                          required:
                            - recurring
                            - interval
                            - intervalCount
                            - billingTiming
                            - currencyOptions
                            - addDeliveryOnRebill
                          additionalProperties: false
                        variants:
                          type: array
                          items:
                            type: object
                            properties:
                              id:
                                type: string
                              productId:
                                type: string
                              default:
                                type: boolean
                              name:
                                type: string
                              description:
                                type: string
                                nullable: true
                              sku:
                                type: string
                                nullable: true
                              externalVariantId:
                                type: string
                                nullable: true
                              price:
                                type: number
                                nullable: true
                              currency:
                                type: string
                                nullable: true
                              compareAtPrice:
                                type: number
                                nullable: true
                              grams:
                                type: number
                              imageUrl:
                                type: string
                                nullable: true
                              active:
                                type: boolean
                              inStock:
                                type: boolean
                              creditPrice:
                                type: number
                                nullable: true
                              accountId:
                                type: string
                              createdAt:
                                type: string
                              updatedAt:
                                type: string
                              prices:
                                type: array
                                items:
                                  type: object
                                  properties:
                                    id:
                                      type: string
                                    createdAt:
                                      type: string
                                    updatedAt:
                                      type: string
                                    accountId:
                                      type: string
                                    productId:
                                      type: string
                                    variantId:
                                      type: string
                                    default:
                                      type: boolean
                                    currencyOptions:
                                      type: object
                                      additionalProperties:
                                        type: object
                                        properties:
                                          rate:
                                            type: number
                                          amount:
                                            type: number
                                          lock:
                                            type: boolean
                                          date:
                                            type: string
                                        required:
                                          - amount
                                        additionalProperties: false
                                    recurring:
                                      type: boolean
                                    billingTiming:
                                      type: string
                                    interval:
                                      type: string
                                      nullable: true
                                    intervalCount:
                                      type: number
                                      nullable: true
                                    rebillWithOrder:
                                      type: boolean
                                    rebillMode:
                                      type: string
                                      nullable: true
                                    rebillStepIntervalMs:
                                      type: number
                                      nullable: true
                                    isExternalSellingPlan:
                                      type: boolean
                                    isInternalSellingPlan:
                                      type: boolean
                                    shopifySellingPlanId:
                                      type: string
                                      nullable: true
                                    addDeliveryOnRebill:
                                      type: boolean
                                  required:
                                    - id
                                    - createdAt
                                    - updatedAt
                                    - accountId
                                    - productId
                                    - variantId
                                    - default
                                    - currencyOptions
                                    - recurring
                                    - billingTiming
                                    - interval
                                    - intervalCount
                                    - rebillWithOrder
                                    - rebillMode
                                    - rebillStepIntervalMs
                                    - isExternalSellingPlan
                                    - isInternalSellingPlan
                                    - shopifySellingPlanId
                                    - addDeliveryOnRebill
                                  additionalProperties: false
                            required:
                              - id
                              - productId
                              - default
                              - name
                              - description
                              - sku
                              - externalVariantId
                              - price
                              - currency
                              - compareAtPrice
                              - grams
                              - imageUrl
                              - active
                              - accountId
                              - createdAt
                              - updatedAt
                              - prices
                            additionalProperties: false
                      required:
                        - id
                        - name
                        - description
                        - image
                        - price
                      additionalProperties: false
                  pagination:
                    type: object
                    properties:
                      hasNext:
                        type: boolean
                      totalItems:
                        type: integer
                      nextPage:
                        type: integer
                        nullable: true
                      previousPage:
                        type: integer
                        nullable: true
                    required:
                      - hasNext
                      - totalItems
                      - nextPage
                      - previousPage
                    additionalProperties: false
                required:
                  - items
                  - pagination
                additionalProperties: false
              examples:
                success:
                  summary: Successful response
                  value:
                    items:
                      - id: prod_123
                        name: Premium Plan
                        description: Our premium subscription plan
                        image: https://example.com/image.jpg
                        price:
                          recurring: true
                          interval: month
                          intervalCount: 1
                          currencyOptions:
                            USD:
                              amount: 2999
                            EUR:
                              amount: 2599
                    pagination:
                      hasNext: false
                      totalItems: 1
                      nextPage: null
                      previousPage: null
        default:
          $ref: '#/components/responses/error'
      security:
        - bearerAuth: []
components:
  responses:
    error:
      description: Error response
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              code:
                type: string
              issues:
                type: array
                items:
                  type: object
                  properties:
                    message:
                      type: string
                  required:
                    - message
                  additionalProperties: false
            required:
              - message
              - code
            additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Enter your API key as: `Bearer your-api-key`'

````