Skip to main content
GET
/
v1
/
ratings
/
tool
/
{tool_id}
curl -X GET "https://api.danubeai.com/v1/ratings/tool/tool_abc123"
{
  "tool_id": "tool_abc123",
  "average_rating": 4.3,
  "total_ratings": 47
}

Overview

Returns the aggregated star rating for a tool, including the average score and total number of ratings. No authentication required.

Path Parameters

tool_id
string
required
The tool UUID

Response

tool_id
string
The tool identifier
average_rating
number
Average rating (1.0-5.0)
total_ratings
integer
Total number of ratings submitted

Example

curl -X GET "https://api.danubeai.com/v1/ratings/tool/tool_abc123"
{
  "tool_id": "tool_abc123",
  "average_rating": 4.3,
  "total_ratings": 47
}