Get Product
GET
/admin/complaint-stats/products/{product_id}
const url = 'http://localhost:9000/admin/complaint-stats/products/example?limit=20&offset=0';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:9000/admin/complaint-stats/products/example?limit=20&offset=0'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” product_id
required
string
Query Parameters
Section titled “Query Parameters ” limit
integer
offset
integer
order
string
fields
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
product
object
product_id
string
total_complaints
string
total_orders
string
complaint_rate
string
last_calculated_at
string format: date-time
Example generated
{ "product": { "product_id": "example", "total_complaints": "example", "total_orders": "example", "complaint_rate": "example", "last_calculated_at": "2026-04-15T12:00:00Z" }}