Get A Composed Individual Record
GET
https://api.getcovent.com/api/v1/individuals/ind_123Retrieve 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/jsonidstringRequired
id path parameter.
Example: ind_123Response
200application/jsonidstringRequired
id response field.
Example: ind_123generalobjectRequired
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:00Zupdated_atstringRequired
updated_at response field.
Example: 2026-04-17T20:00:00ZResponse 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"
}