GET
/
api
/
v1
/
products
List Products
curl --request GET \
  --url https://app.flowglad.com/api/v1/products \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "createdByCommit": "<string>",
      "updatedByCommit": "<string>",
      "livemode": true,
      "name": "<string>",
      "description": "<string>",
      "imageURL": "<string>",
      "organizationId": "<string>",
      "displayFeatures": [
        {
          "enabled": true,
          "label": "<string>",
          "details": "<string>"
        }
      ],
      "active": true,
      "singularQuantityLabel": "<string>",
      "pluralQuantityLabel": "<string>",
      "pricingModelId": "<string>",
      "default": true,
      "slug": "<string>"
    }
  ],
  "currentCursor": "<string>",
  "nextCursor": "<string>",
  "hasMore": true,
  "total": 123
}

Authorizations

Authorization
string
header
required

Query Parameters

cursor
string
limit
string

Response

Successful response

data
object[]
required
hasMore
boolean
required
total
number
required
currentCursor
string
nextCursor
string