curl -X GET "https://api.chariow.com/v1/products/prd_abc123" \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
"message": "success",
"data": {
"id": "prd_abc123",
"name": "Premium Web Development Course",
"slug": "premium-web-dev-course",
"description": "A comprehensive course covering advanced web development techniques and best practices.",
"type": "course",
"category": {
"value": "education_and_learning",
"label": "Education and Learning"
},
"status": "published",
"is_free": false,
"pictures": {
"thumbnail": "https://cdn.chariow.com/products/abc123/thumb.jpg",
"cover": "https://cdn.chariow.com/products/abc123/cover.jpg"
},
"pricing": {
"type": "one_time",
"current_price": {
"value": 99.00,
"formatted": "$99.00",
"short": "99",
"currency": "USD"
},
"price": {
"value": 149.00,
"formatted": "$149.00",
"short": "149",
"currency": "USD"
},
"sale_price": {
"value": 99.00,
"formatted": "$99.00",
"short": "99",
"currency": "USD"
},
"min_price": {
"value": 0,
"formatted": "$0.00",
"short": "0",
"currency": "USD"
},
"suggested_price": {
"value": 0,
"formatted": "$0.00",
"short": "0",
"currency": "USD"
},
"price_off": "34%"
},
"quantity": null,
"settings": {
"is_requires_shipping_address": false
},
"rating": {
"average": 4.8,
"count": 245
},
"on_sale_until": "2025-02-28T23:59:59Z",
"sales_count": 1250,
"seo": null,
"custom_cta_text": {
"value": null,
"label": null
},
"fields": null,
"bundle": null
},
"errors": []
}
Products
Get Product
Retrieve detailed information about a specific product
curl -X GET "https://api.chariow.com/v1/products/prd_abc123" \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
"message": "success",
"data": {
"id": "prd_abc123",
"name": "Premium Web Development Course",
"slug": "premium-web-dev-course",
"description": "A comprehensive course covering advanced web development techniques and best practices.",
"type": "course",
"category": {
"value": "education_and_learning",
"label": "Education and Learning"
},
"status": "published",
"is_free": false,
"pictures": {
"thumbnail": "https://cdn.chariow.com/products/abc123/thumb.jpg",
"cover": "https://cdn.chariow.com/products/abc123/cover.jpg"
},
"pricing": {
"type": "one_time",
"current_price": {
"value": 99.00,
"formatted": "$99.00",
"short": "99",
"currency": "USD"
},
"price": {
"value": 149.00,
"formatted": "$149.00",
"short": "149",
"currency": "USD"
},
"sale_price": {
"value": 99.00,
"formatted": "$99.00",
"short": "99",
"currency": "USD"
},
"min_price": {
"value": 0,
"formatted": "$0.00",
"short": "0",
"currency": "USD"
},
"suggested_price": {
"value": 0,
"formatted": "$0.00",
"short": "0",
"currency": "USD"
},
"price_off": "34%"
},
"quantity": null,
"settings": {
"is_requires_shipping_address": false
},
"rating": {
"average": 4.8,
"count": 245
},
"on_sale_until": "2025-02-28T23:59:59Z",
"sales_count": 1250,
"seo": null,
"custom_cta_text": {
"value": null,
"label": null
},
"fields": null,
"bundle": null
},
"errors": []
}
Retrieves comprehensive information about a specific product by its public ID or slug. This endpoint returns detailed pricing information, images, ratings, sales count, SEO data, custom fields, and bundle information (if applicable).
Path Parameters
The unique product identifier or slug (e.g.,
prd_abc123 or premium-course)Response
Response status message
Show properties
Show properties
Unique product identifier (e.g.,
prd_abc123)Product name
URL-friendly product identifier
Full product description
Product type:
downloadable, service, course, license, bundle, or coachingProduct status (always
published for public API)Whether the product is free
Show properties
Show properties
Pricing type:
free, one_time, or what_you_wantBase price (same structure as current_price)
Sale price if product is on sale (same structure as current_price)
Minimum price for “pay what you want” products
Suggested price for “pay what you want” products
Discount percentage (e.g., “34%”)
Stock quantity information (only for products with limited quantity)
Show properties
Show properties
Whether shipping address is required
Sale end date (ISO 8601 format)
Number of successful sales (null if hidden)
Custom fields (only when loaded)
Array of error messages (empty on success)
curl -X GET "https://api.chariow.com/v1/products/prd_abc123" \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
"message": "success",
"data": {
"id": "prd_abc123",
"name": "Premium Web Development Course",
"slug": "premium-web-dev-course",
"description": "A comprehensive course covering advanced web development techniques and best practices.",
"type": "course",
"category": {
"value": "education_and_learning",
"label": "Education and Learning"
},
"status": "published",
"is_free": false,
"pictures": {
"thumbnail": "https://cdn.chariow.com/products/abc123/thumb.jpg",
"cover": "https://cdn.chariow.com/products/abc123/cover.jpg"
},
"pricing": {
"type": "one_time",
"current_price": {
"value": 99.00,
"formatted": "$99.00",
"short": "99",
"currency": "USD"
},
"price": {
"value": 149.00,
"formatted": "$149.00",
"short": "149",
"currency": "USD"
},
"sale_price": {
"value": 99.00,
"formatted": "$99.00",
"short": "99",
"currency": "USD"
},
"min_price": {
"value": 0,
"formatted": "$0.00",
"short": "0",
"currency": "USD"
},
"suggested_price": {
"value": 0,
"formatted": "$0.00",
"short": "0",
"currency": "USD"
},
"price_off": "34%"
},
"quantity": null,
"settings": {
"is_requires_shipping_address": false
},
"rating": {
"average": 4.8,
"count": 245
},
"on_sale_until": "2025-02-28T23:59:59Z",
"sales_count": 1250,
"seo": null,
"custom_cta_text": {
"value": null,
"label": null
},
"fields": null,
"bundle": null
},
"errors": []
}
Was this page helpful?
⌘I