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

# Get Tool Ratings

> Get aggregated ratings for a tool

## Overview

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

## Path Parameters

<ParamField path="tool_id" type="string" required>
  The tool UUID
</ParamField>

## Response

<ResponseField name="tool_id" type="string">
  The tool identifier
</ResponseField>

<ResponseField name="average_rating" type="number">
  Average rating (1.0-5.0)
</ResponseField>

<ResponseField name="total_ratings" type="integer">
  Total number of ratings submitted
</ResponseField>

## Example

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.danubeai.com/v1/ratings/tool/tool_abc123"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "tool_id": "tool_abc123",
    "average_rating": 4.3,
    "total_ratings": 47
  }
  ```
</ResponseExample>
