GET
/
api
/
v1
/
products
/
{id}
curl --request GET \
  --url https://app.flowglad.com/api/v1/products/{id} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "livemode": true,
  "name": "<string>",
  "description": "<string>",
  "imageURL": "<string>",
  "organizationId": "<string>",
  "displayFeatures": [
    {
      "enabled": true,
      "label": "<string>",
      "details": "<string>"
    }
  ],
  "active": true,
  "singularQuantityLabel": "<string>",
  "pluralQuantityLabel": "<string>",
  "catalogId": "<string>",
  "prices": [
    {
      "id": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "livemode": true,
      "intervalUnit": "day",
      "name": "<string>",
      "intervalCount": 123,
      "type": "subscription",
      "trialPeriodDays": 123,
      "setupFeeAmount": 123,
      "isDefault": true,
      "unitPrice": 123,
      "productId": "<string>",
      "active": true,
      "currency": "USD"
    }
  ],
  "defaultPrice": {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "livemode": true,
    "intervalUnit": "day",
    "name": "<string>",
    "intervalCount": 123,
    "type": "subscription",
    "trialPeriodDays": 123,
    "setupFeeAmount": 123,
    "isDefault": true,
    "unitPrice": 123,
    "productId": "<string>",
    "active": true,
    "currency": "USD"
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Response

200
application/json
Successful response
id
string
required
createdAt
required

safeZodDate

updatedAt
required

safeZodDate

livemode
boolean
required
name
string
required
description
string | null
required
imageURL
string | null
required
organizationId
string
required
displayFeatures
object[] | null
required
active
boolean
required
singularQuantityLabel
string | null
required
pluralQuantityLabel
string | null
required
catalogId
string
required
prices
object[]
required

A subscription price, which will have details on the interval, default trial period, and setup fee (if any).

defaultPrice
object
required

The default price for the product. If no price is explicitly set as default, will return the first price created for the product..