Skip to main content
GET
/
api
/
v1
/
products
/
{id}
Get Product
curl --request GET \
  --url https://app.flowglad.com/api/v1/products/{id} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "createdAt": 0,
  "updatedAt": 0,
  "livemode": true,
  "name": "<string>",
  "description": "<string>",
  "imageURL": "<string>",
  "organizationId": "<string>",
  "active": true,
  "singularQuantityLabel": "<string>",
  "pluralQuantityLabel": "<string>",
  "pricingModelId": "<string>",
  "default": true,
  "slug": "<string>",
  "prices": [
    {
      "id": "<string>",
      "createdAt": 0,
      "updatedAt": 0,
      "livemode": true,
      "intervalUnit": "day",
      "name": "<string>",
      "intervalCount": 4503599627370495,
      "type": "<string>",
      "trialPeriodDays": 4503599627370495,
      "isDefault": true,
      "unitPrice": 4503599627370495,
      "usageEventsPerUnit": null,
      "productId": "<string>",
      "active": true,
      "currency": "USD",
      "slug": "<string>",
      "usageMeterId": null
    }
  ],
  "defaultPrice": {
    "id": "<string>",
    "createdAt": 0,
    "updatedAt": 0,
    "livemode": true,
    "intervalUnit": "day",
    "name": "<string>",
    "intervalCount": 4503599627370495,
    "type": "<string>",
    "trialPeriodDays": 4503599627370495,
    "isDefault": true,
    "unitPrice": 4503599627370495,
    "usageEventsPerUnit": null,
    "productId": "<string>",
    "active": true,
    "currency": "USD",
    "slug": "<string>",
    "usageMeterId": null
  },
  "features": [
    {
      "id": "<string>",
      "createdAt": 0,
      "updatedAt": 0,
      "livemode": true,
      "organizationId": "<string>",
      "type": "<string>",
      "slug": "<string>",
      "name": "<string>",
      "description": "<string>",
      "amount": null,
      "usageMeterId": null,
      "renewalFrequency": null,
      "pricingModelId": "<string>",
      "active": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Response

Successful response

id
string
required
createdAt
integer
required

Epoch milliseconds.

Required range: -9007199254740991 <= x <= 9007199254740991
updatedAt
integer
required

Epoch milliseconds.

Required range: -9007199254740991 <= x <= 9007199254740991
livemode
boolean
required
name
string
required
description
string | null
required
imageURL
string | null
required
organizationId
string
required
active
boolean
required
singularQuantityLabel
string | null
required
pluralQuantityLabel
string | null
required
pricingModelId
string
required
default
boolean
required
slug
string | null
required
prices
object[]
required
  • Option 1
  • Option 2
  • Option 3
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..

  • Option 1
  • Option 2
  • Option 3
features
object[]
required
  • Option 1
  • Option 2