GET
/
reviews
/
{user_id}
curl --request GET \
  --url https://api.guilds.me/v1/reviews/{user_id} \
  --header 'Guilds-Api-Key: <api-key>' \
  --header 'Guilds-App-Id: <api-key>'
{
  "id": "<string>",
  "rating": 3,
  "content": "<string>",
  "likes": 123,
  "replies": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "authorId": "<string>"
}

Authorizations

Guilds-Api-Key
string
header
required

API Key specific to each guild

Guilds-App-Id
string
header
required

App ID specific to each guild

Path Parameters

user_id
string
required

The unique Discord user ID (snowflake).

Response

200
application/json
Review response
id
string

The ID of this review

rating
number | null

The rating of the review

Required range: 1 <= x <= 5
content
string | null

The content of the review

Maximum length: 200
likes
number | null

Number of likes for this review

replies
number | null

Number of replies for this review

created_at
string | null

Date and time when the review was created

authorId
string | null

Discord ID of the author