Skip to main content
POST
/
v1
/
skills
/
{slug}
/
reviews
Create Review
curl --request POST \
  --url https://api.agentpowers.ai/v1/skills/{slug}/reviews \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "rating": 3,
  "text": "<string>"
}
'
{
  "id": "<string>",
  "skill_slug": "<string>",
  "rating": 123,
  "text": "<string>",
  "author_display_name": "<string>",
  "created_at": "<string>",
  "author_slug": "<string>"
}

Authorizations

Authorization
string
header
required

Provide a Clerk JWT or a long-lived CLI token (prefix ap_cli_). Pass as Authorization: Bearer <token>.

Path Parameters

slug
string
required

Body

application/json
rating
integer
required
Required range: 1 <= x <= 5
text
string | null
Maximum string length: 2000

Response

Successful Response

id
string
required
skill_slug
string
required
rating
integer
required
text
string | null
required
author_display_name
string
required
created_at
string
required
author_slug
string | null