Individuals

Get A Composed Individual Record

GEThttps://api.getcovent.com/api/v1/individuals/ind_123

Retrieve a composed individual record including general profile context.

How to Call

Use one of the examples below to call this endpoint from your own integration.

curl -X GET "https://api.getcovent.com/api/v1/individuals/ind_123" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Accept: application/json"

Request

Review headers, parameters, and body fields before calling this endpoint.

AuthorizationstringRequired

Bearer token for the proposed external API contract.

Example: Bearer <API_KEY>
AcceptstringRequired

Response format header.

Example: application/json

idstringRequired

id path parameter.

Example: ind_123

Response

200application/json

idstringRequired

id response field.

Example: ind_123
generalobjectRequired

general response field.

Example: {"full_name":"Jordan Lee","email":"jordan@example.com","phone":"+14805550199","status":"active","tags":["vip","repeat-buyer"]}
buy_boxobjectRequired

buy_box response field.

Example: {"markets":["phoenix-az"],"property_types":["single_family"],"pricing":{"min":150000,"max":450000}}
portfolioobjectRequired

portfolio response field.

Example: {"summary":{"total_holdings":12,"primary_strategy":"buy_and_hold"}}
listingsarrayRequired

listings response field.

Example: []
created_atstringRequired

created_at response field.

Example: 2026-04-17T20:00:00Z
updated_atstringRequired

updated_at response field.

Example: 2026-04-17T20:00:00Z

Response Example

{
  "id": "ind_123",
  "general": {
    "full_name": "Jordan Lee",
    "email": "jordan@example.com",
    "phone": "+14805550199",
    "status": "active",
    "tags": ["vip", "repeat-buyer"]
  },
  "buy_box": {
    "markets": ["phoenix-az"],
    "property_types": ["single_family"],
    "pricing": {
      "min": 150000,
      "max": 450000
    }
  },
  "portfolio": {
    "summary": {
      "total_holdings": 12,
      "primary_strategy": "buy_and_hold"
    }
  },
  "listings": [],
  "created_at": "2026-04-17T20:00:00Z",
  "updated_at": "2026-04-17T20:00:00Z"
}