Skip to main content
GET
/
review-list
List reviews for a user
curl --request GET \
  --url https://aarwcjjzhlmkgdwrisyt.supabase.co/functions/v1/review-list \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": 200,
  "data": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "escrow_id": "d4e5f6a7-b8c9-0123-defa-234567890123",
      "reviewer_id": "11111111-2222-3333-4444-555555555555",
      "reviewee_id": "66666666-7777-8888-9999-000000000000",
      "rating": 5,
      "feedback": "Very smooth transaction. Delivered exactly as described.",
      "created_at": "2026-04-18T10:30:00Z",
      "reviewer_first_name": "Adebayo",
      "reviewer_last_name": "Johnson",
      "reviewer_avatar_url": null,
      "escrow_title": "iPhone 15 Pro Max 256GB"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT access token obtained from /auth-verify (login context) or /auth-signup. Set the bearer_token environment variable in your API client to apply it globally.

Query Parameters

user_id
string<uuid>
required

UUID of the user whose received reviews to fetch.

limit
integer
default:20

Number of reviews to return (1–100, default 20).

Required range: 1 <= x <= 100
before
string<date-time>

ISO 8601 datetime — return reviews older than this (cursor pagination).

Response

Reviews for the user

success
boolean
Example:

true

status
integer
Example:

200

data
object[]