# List all products

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/products:
    get:
      summary: List all products
      deprecated: false
      description: ''
      tags:
        - API Reference/Products
      parameters:
        - name: starting_after
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: ending_before
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: limit
          in: query
          description: ''
          required: false
          example: 0
          schema:
            type: integer
        - name: active
          in: query
          description: ''
          required: false
          example: 'true'
          schema:
            type: string
        - name: ids
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: array
            items:
              type: string
        - name: url
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: created[gt]
          in: query
          description: ''
          required: false
          example: 0
          schema:
            type: number
        - name: created[gte]
          in: query
          description: ''
          required: false
          example: 0
          schema:
            type: number
        - name: created[lt]
          in: query
          description: ''
          required: false
          example: 0
          schema:
            type: number
        - name: created[lte]
          in: query
          description: ''
          required: false
          example: 0
          schema:
            type: number
        - name: Accept
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
        - name: Content-Type
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
          headers: {}
          x-apifox-name: OK
      security:
        - basic: []
      x-apifox-folder: API Reference/Products
      x-apifox-status: developing
      x-run-in-apifox: https://app.apifox.com/web/project/1296482/apis/api-212166001-run
components:
  schemas: {}
  securitySchemes:
    basic:
      type: http
      scheme: basic
servers:
  - url: https://apitest.wooshpay.com
    description: 官网测试
security:
  - basic: []

```
