Skip to main content
GET
/
escrow-list
List escrows
curl --request GET \
  --url https://aarwcjjzhlmkgdwrisyt.supabase.co/functions/v1/escrow-list \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": 200,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "initiator_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "counterparty_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "category": "goods_products",
      "payer_role": "initiator",
      "title": "<string>",
      "description": "<string>",
      "counterparty_phone": "<string>",
      "transaction_type": "<string>",
      "release_type": "<string>",
      "amount": 123,
      "currency": "<string>",
      "status": "draft",
      "inspection_period_days": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "funded_at": "2023-11-07T05:31:56Z",
      "released_at": "2023-11-07T05:31:56Z",
      "conversation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}

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

status
enum<string>
Available options:
draft,
invite_pending,
active,
funded,
inspection,
released,
refunded,
disputed,
cancelled,
deleted,
ended
limit
integer
default:20
Required range: 1 <= x <= 50
before
string<date-time>

Cursor — return escrows created before this timestamp.

Response

List of escrows

success
boolean
status
integer
Example:

200

data
object[]