v1

latestOpenAPI 3.0.32026-07-26172157253.6 KB
Stripe Payments

Get Stripe Product

Get one mirrored Stripe product and its associated prices.

get/api/payments/stripe/{environment}/catalog/products/{productId}

Path parameters

environment'test' | 'live' required

Payment provider environment.

productIdstring required

Stripe product ID.

Response

Product and prices

Example response

{
  "product": {
    "productId": "prod_123",
    "defaultPriceId": "price_123"
  },
  "prices": [
    {
      "priceId": "price_123",
      "productId": "prod_123",
      "currency": "usd",
      "unitAmount": 2900,
      "unitAmountDecimal": "2900",
      "type": "recurring",
      "lookupKey": "pro_monthly",
      "billingScheme": "per_unit",
      "taxBehavior": "unspecified",
      "recurringInterval": "month",
      "recurringIntervalCount": 1
    }
  ]
}