Products
Get a product by ID
Retrieve a single product by its unique identifier.
get/v1/products/{id}
Path parameters
idstring required
The product ID
Response
Successfully retrieved the product
Example response
{
"description": "This is a sample product description.",
"image_url": "https://example.com/image.jpg",
"image_urls": [
"https://example.com/image.jpg"
],
"features": [
{
"id": "feat_abc123",
"description": "Access to premium course materials."
}
],
"price": 400,
"currency": "USD",
"product_url": "https://creem.io/product/prod_123123123123",
"default_success_url": "https://example.com/?status=successful",
"created_at": "2023-01-01T00:00:00Z",
"updated_at": "2023-01-01T00:00:00Z"
}Changes
Changed in 2 of the 4 revisions of this API.13
- ●
added the new
customenum value to thebilling_periodresponse property for the response status200response-property-enum-value-added
- ○
added the optional property
recurring_intervalto the response with the200statusresponse-optional-property-added
- ○
added the optional property
recurring_interval_countto the response with the200statusresponse-optional-property-added
- ●
- ○
endpoint added
endpoint-added
- ○