Welcome to Theo Docs — the AI orchestration API.
Get and submit user reviews for a marketplace skill.
cURL
curl --request GET \ --url https://api.example.com/api/v1/skills/{id}/reviews \ --header 'Content-Type: application/json' \ --data ' { "rating": 123, "body": "<string>" } '
curl https://hitheo.ai/api/v1/skills/skill_abc123/reviews \ -H "Authorization: Bearer $THEO_API_KEY"
rating
body
authorUserId
createdAt
curl -X POST https://hitheo.ai/api/v1/skills/skill_abc123/reviews \ -H "Authorization: Bearer $THEO_API_KEY" \ -H "Content-Type: application/json" \ -d '{"rating": 5, "body": "Great skill, saves hours of work!"}'
GET /api/v1/skills/{id}/reviews
Was this page helpful?