Skip to main content
GET /api/v1/builder/users

Parameters

limit
number
default:"50"
Items per page (1–100).
cursor
string
Pagination cursor from next_cursor.

Response

users
BuilderUserResponse[]
Array of user objects (same shape as the create user response).
next_cursor
string | null
Pass as cursor to fetch the next page. Omitted on the last page.
count
number
Number of items in this response.
curl "https://api.parsecapi.com/api/v1/builder/users?limit=20" \
  -H "X-API-Key: pk_live_YOUR_BUILDER_KEY"
{
  "users": [
    {
      "customer_id": "a1b2c3d4-...",
      "external_id": "user_001",
      "api_key": "pk_live_abc123...",
      "tier": "free",
      "qps_limit": 10,
      "linked_exchanges": ["polymarket"],
      "wallet": {
        "eoa_address": "0x1234...",
        "privy_wallet_id": "wallet_abc123",
        "wallet_type": "eoa"
      },
      "fee_escrow_enabled": false
    }
  ],
  "next_cursor": "eyJidWlsZGVyX2V4dGVybmFsX2lkIjoiMDAyIn0=",
  "count": 1
}