Product
Get Product
Product
Get Product
GET
/
v1
/
products
curl --request GET \
--url https://api.creem.io/v1/products \
--header 'x-api-key: <x-api-key>'
{
"id": "<string>",
"mode": "test",
"object": "<string>",
"name": "<string>",
"description": "This is a sample product description.",
"image_url": "https://example.com/image.jpg",
"features": [
{
"id": "<string>",
"type": "<string>",
"description": "Get access to discord server."
}
],
"price": 400,
"currency": "EUR",
"billing_type": "recurring",
"billing_period": "every-month",
"status": "<string>",
"tax_mode": "inclusive",
"tax_category": "saas",
"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"
}
Headers
Query Parameters
The unique identifier of the product
Response
200 - application/json
Successfully retrieved the product
The response is of type object
.
curl --request GET \
--url https://api.creem.io/v1/products \
--header 'x-api-key: <x-api-key>'
{
"id": "<string>",
"mode": "test",
"object": "<string>",
"name": "<string>",
"description": "This is a sample product description.",
"image_url": "https://example.com/image.jpg",
"features": [
{
"id": "<string>",
"type": "<string>",
"description": "Get access to discord server."
}
],
"price": 400,
"currency": "EUR",
"billing_type": "recurring",
"billing_period": "every-month",
"status": "<string>",
"tax_mode": "inclusive",
"tax_category": "saas",
"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"
}