curl -X GET "https://api.chariow.com/v1/products?per_page=20&type=course" \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
"message": "success",
"data": {
"data": [
{
"id": "prd_abc123",
"name": "Premium Course",
"slug": "premium-course",
"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": 99.00,
"formatted": "$99.00",
"short": "99",
"currency": "USD"
}
}
},
{
"id": "prd_def456",
"name": "Pro Software License",
"slug": "pro-software",
"type": "license",
"category": {
"value": "technology",
"label": "Technology"
},
"status": "published",
"is_free": false,
"pictures": {
"thumbnail": null,
"cover": null
},
"pricing": {
"type": "one_time",
"current_price": {
"value": 49.00,
"formatted": "$49.00",
"short": "49",
"currency": "USD"
},
"price": {
"value": 49.00,
"formatted": "$49.00",
"short": "49",
"currency": "USD"
}
}
}
],
"pagination": {
"next_cursor": "eyJpZCI6NTB9",
"prev_cursor": null,
"has_more": true
}
},
"errors": []
}
Products
List Products
Retrieve all published products from your store
curl -X GET "https://api.chariow.com/v1/products?per_page=20&type=course" \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
"message": "success",
"data": {
"data": [
{
"id": "prd_abc123",
"name": "Premium Course",
"slug": "premium-course",
"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": 99.00,
"formatted": "$99.00",
"short": "99",
"currency": "USD"
}
}
},
{
"id": "prd_def456",
"name": "Pro Software License",
"slug": "pro-software",
"type": "license",
"category": {
"value": "technology",
"label": "Technology"
},
"status": "published",
"is_free": false,
"pictures": {
"thumbnail": null,
"cover": null
},
"pricing": {
"type": "one_time",
"current_price": {
"value": 49.00,
"formatted": "$49.00",
"short": "49",
"currency": "USD"
},
"price": {
"value": 49.00,
"formatted": "$49.00",
"short": "49",
"currency": "USD"
}
}
}
],
"pagination": {
"next_cursor": "eyJpZCI6NTB9",
"prev_cursor": null,
"has_more": true
}
},
"errors": []
}
Retrieves a cursor-paginated list of all published products in your store. Only products in published status are returned. Supports optional filtering by category, type, or search term.
Query Parameters
Number of products to return per page (maximum 100)
Cursor for pagination. Use the
next_cursor from the previous response to fetch the next page.Search products by name or slug
Filter by product category. Available values:
creative_arts, technology, business_and_finance, personal_development, education_and_learning, entertainment, health_and_wellness, literature_and_publishing, media_and_communication, miscellaneousFilter by product type. Available values:
downloadable, service, course, license, bundle, coachingResponse
Response status message
Show properties
Show properties
Array of product objects
Show product object
Show product object
Unique product identifier (e.g.,
prd_abc123)Product name
URL-friendly product identifier
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)
Array of error messages (empty on success)
curl -X GET "https://api.chariow.com/v1/products?per_page=20&type=course" \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
"message": "success",
"data": {
"data": [
{
"id": "prd_abc123",
"name": "Premium Course",
"slug": "premium-course",
"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": 99.00,
"formatted": "$99.00",
"short": "99",
"currency": "USD"
}
}
},
{
"id": "prd_def456",
"name": "Pro Software License",
"slug": "pro-software",
"type": "license",
"category": {
"value": "technology",
"label": "Technology"
},
"status": "published",
"is_free": false,
"pictures": {
"thumbnail": null,
"cover": null
},
"pricing": {
"type": "one_time",
"current_price": {
"value": 49.00,
"formatted": "$49.00",
"short": "49",
"currency": "USD"
},
"price": {
"value": 49.00,
"formatted": "$49.00",
"short": "49",
"currency": "USD"
}
}
}
],
"pagination": {
"next_cursor": "eyJpZCI6NTB9",
"prev_cursor": null,
"has_more": true
}
},
"errors": []
}
Was this page helpful?
⌘I