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.
Overview
Returns your previously submitted rating and comment for a tool. Returns null values if you haven’t rated this tool yet.
Auth: Requires authentication (JWT or API key).
Path Parameters
The tool UUID to check your rating for
Response
Your rating (1-5), or null if not rated
Your comment, or null if not rated
Example
cURL
Python SDK
TypeScript SDK
curl -X GET "https://api.danubeai.com/v1/ratings/my/tool_abc123" \
-H "danube-api-key: YOUR_API_KEY"
{
"tool_id" : "tool_abc123" ,
"rating" : 4 ,
"comment" : "Very useful tool"
}
This endpoint is also available as the get_my_rating MCP tool:
result = await mcp.call_tool( "get_my_rating" , {
"tool_id" : "tool_abc123"
})