Skip to main content
GET
https://api.chariow.com/v1
/
products
/
{productId}
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": {
        "amount": 99.00,
        "currency": "USD",
        "formatted": "$99.00"
      },
      "price": {
        "amount": 149.00,
        "currency": "USD",
        "formatted": "$149.00"
      },
      "sale_price": {
        "amount": 99.00,
        "currency": "USD",
        "formatted": "$99.00"
      },
      "min_price": {
        "amount": 0,
        "currency": "USD",
        "formatted": "$0.00"
      },
      "suggested_price": {
        "amount": 0,
        "currency": "USD",
        "formatted": "$0.00"
      },
      "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

productId
string
required
The unique product identifier or slug (e.g., prd_abc123 or premium-course)

Response

message
string
Response status message
data
object
errors
array
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": {
        "amount": 99.00,
        "currency": "USD",
        "formatted": "$99.00"
      },
      "price": {
        "amount": 149.00,
        "currency": "USD",
        "formatted": "$149.00"
      },
      "sale_price": {
        "amount": 99.00,
        "currency": "USD",
        "formatted": "$99.00"
      },
      "min_price": {
        "amount": 0,
        "currency": "USD",
        "formatted": "$0.00"
      },
      "suggested_price": {
        "amount": 0,
        "currency": "USD",
        "formatted": "$0.00"
      },
      "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": []
}