Skip to main content
GET
/
api
/
v1
/
identities
/
{id}
curl -X GET "https://api.orwel.io/api/v1/identities/ee0e8400-e29b-41d4-a716-446655440009" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "data": {
    "id": "ee0e8400-e29b-41d4-a716-446655440009",
    "workspace_id": "770e8400-e29b-41d4-a716-446655440002",
    "visitor_id": "660e8400-e29b-41d4-a716-446655440001",
    "email": "user@example.com",
    "name": "John Visitor",
    "traits": {
      "plan": "enterprise",
      "company": "Acme Corp"
    },
    "first_seen": "2025-01-10T08:00:00Z",
    "last_seen": "2025-01-15T16:30:00Z",
    "ip": "192.168.1.1",
    "city": "San Francisco",
    "country": "USA",
    "is_favorite": true,
    "created_at": "2025-01-10T08:00:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://orwel-22af1265.mintlify.app/llms.txt

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

Path Parameters

id
string
required
The unique identifier (UUID) of the identity

Response

data
object
The visitor identity object
curl -X GET "https://api.orwel.io/api/v1/identities/ee0e8400-e29b-41d4-a716-446655440009" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "data": {
    "id": "ee0e8400-e29b-41d4-a716-446655440009",
    "workspace_id": "770e8400-e29b-41d4-a716-446655440002",
    "visitor_id": "660e8400-e29b-41d4-a716-446655440001",
    "email": "user@example.com",
    "name": "John Visitor",
    "traits": {
      "plan": "enterprise",
      "company": "Acme Corp"
    },
    "first_seen": "2025-01-10T08:00:00Z",
    "last_seen": "2025-01-15T16:30:00Z",
    "ip": "192.168.1.1",
    "city": "San Francisco",
    "country": "USA",
    "is_favorite": true,
    "created_at": "2025-01-10T08:00:00Z"
  }
}