Skip to main content
GET
/
contact-list
List contacts
curl --request GET \
  --url https://aarwcjjzhlmkgdwrisyt.supabase.co/functions/v1/contact-list \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": 200,
  "data": [
    {
      "id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "contact_id": "d4e5f6a7-b8c9-0123-defa-234567890123",
      "escrow_id": "e5f6a7b8-c9d0-1234-efab-345678901234",
      "created_at": "2026-03-15T08:00:00Z",
      "profile": {
        "first_name": "Chidi",
        "last_name": "Okeke",
        "username": "chidiokeke"
      }
    }
  ]
}

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.

Response

Contacts returned

success
boolean
Example:

true

status
integer
Example:

200

data
object[]