Skip to main content
GET
/
v1
/
contacts
/
{id}
Get a contact
curl --request GET \
  --url https://api.privy.com/v1/v1/contacts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "cus_a1b2c3d4e5f6g7h8",
    "first_name": "Jane",
    "last_name": "Doe",
    "email": "jane@example.com",
    "email_permission": "subscribed",
    "phone_number": "+15551234567",
    "phone_permission": "subscribed",
    "tags": [
      "vip"
    ],
    "custom_fields": {
      "loyalty_tier": "gold"
    },
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-03-20T14:22:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://help.privy.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.0 client credentials flow. Exchange your client ID and client secret for an access token at the token URL, then include it as Authorization: Bearer <token>. See the Authentication page for details.

Path Parameters

id
string
required

The contact's unique identifier (returned as id in contact responses).

Response

The requested contact.

data
object