Get Person

get/v1/people/{person_id}

Fetches a single person by id with relationships and included related resources. Read-only; no side effects. 404 when not found in the caller's workspace.

Requires a bearer token: Authorization: Bearer <token>.

Path parameters

NameTypeRequiredDescription
person_idstring <uuid>YesPublic UUID of the person.e.g. c4d5e6f7-8a9b-40c1-92d3-e4f5a6b7c8d9

Headers

NameTypeRequiredDescription
AcceptstringNoStandard content negotiation. JSON is always returned for these resources.e.g. application/json

Request

cURL
curl -X GET https://api.wellapp.ai/v1/people/{person_id} \
  -H "Authorization: Bearer $WELL_API_TOKEN"

Responses

200The person with included related resources.

{
  "data": {
    "type": "people",
    "id": "c4d5e6f7-8a9b-40c1-92d3-e4f5a6b7c8d9",
    "attributes": {
      "full_name": "Remy Okafor",
      "first_name": "Remy",
      "last_name": "Okafor",
      "job_title": "Founder and CEO",
      "created_at": "2026-01-12T09:31:00.000Z",
      "updated_at": "2026-05-18T11:22:09.000Z"
    },
    "relationships": {
      "companies": {
        "data": [
          {
            "type": "companies",
            "id": "b2c3d4e5-6f70-4812-93a4-b5c6d7e8f9a0"
          }
        ]
      }
    }
  },
  "included": [
    {
      "type": "companies",
      "id": "b2c3d4e5-6f70-4812-93a4-b5c6d7e8f9a0",
      "attributes": {
        "name": "Anthropic",
        "description": "Frontier AI lab, vendor for model inference.",
        "domain": "anthropic.com",
        "registered_name": "Anthropic, PBC",
        "trade_name": "Anthropic",
        "registered_value": "C3981221",
        "registry_name": "Delaware Division of Corporations",
        "registry_country": "US",
        "tax_id_value": "82-1990113",
        "tax_id_type": "EIN",
        "created_at": "2026-01-15T10:00:00.000Z",
        "updated_at": "2026-05-10T12:00:00.000Z"
      },
      "relationships": {
        "people": {
          "data": []
        },
        "emails": {
          "data": [
            {
              "type": "email",
              "id": "e6f7a8b9-0c1d-42e3-94f5-a6b7c8d9e0f1"
            }
          ]
        }
      }
    }
  ]
}

401Unauthorized

{
  "code": "UNAUTHORIZED",
  "status": 401,
  "title": "Unauthorized",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

403Forbidden

{
  "code": "FORBIDDEN",
  "status": 403,
  "title": "Forbidden",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

404Not Found

{
  "code": "NOT_FOUND",
  "status": 404,
  "title": "Not Found",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}