> ## Documentation Index
> Fetch the complete documentation index at: https://agent-docs.akta.pro/llms.txt
> Use this file to discover all available pages before exploring further.

# Product Reviews API Best Practices

> Best practices for using product reviews API.

**Always call without** `products `**first. It's free and gives you the IDs you need**

The product list call costs 0.5 credits and returns all the `id` values required for subsequent review calls. Never hardcode product IDs. Always fetch them dynamically so your integration remains correct if a company's product catalog changes.

**Pass `products` as a comma-separated string of product IDs** The `products` parameter should contain comma separated list of product Ids whose reviews need to be fetched.

**Check `reviews.total` before paginating**

`reviews.total` is the complete count of available reviews for a product across all providers. Compare it against the number of reviews already fetched to determine whether further pages exist, and stop paginating when the returned `reviews.data` array is empty.

***
