Get Listings Associated
GET
https://api.getcovent.com/api/v1/individuals/ind_123/listings?status=active&interaction_type=offer&page=1&page_size=10Retrieve listings associated with the individual through matches, engagement, walkthroughs, or offers.
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/listings?status=active&interaction_type=offer&page=1&page_size=10" \
-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_123statusstringRequired
status query parameter.
Example: activeinteraction_typestringRequired
interaction_type query parameter.
Example: offerpagenumberRequired
page query parameter.
Example: 1page_sizenumberRequired
page_size query parameter.
Example: 10Response
200application/jsonitemsarrayRequired
items response field.
Example: [{"listing":{"id":"lst_123","headline":"Off-market duplex in central Phoenix"},"investor_status":"offered","walkthrough":{"scheduled_at":"2026-04-21T17:00:00Z"},"offer":{"id":"off_123","amount":372000,"status":"submitted"},"last_activity_at":"2026-04-17T19:45:00Z"}]pagenumberRequired
page response field.
Example: 1page_sizenumberRequired
page_size response field.
Example: 10totalnumberRequired
total response field.
Example: 4Response Example
{
"items": [
{
"listing": {
"id": "lst_123",
"headline": "Off-market duplex in central Phoenix"
},
"investor_status": "offered",
"walkthrough": {
"scheduled_at": "2026-04-21T17:00:00Z"
},
"offer": {
"id": "off_123",
"amount": 372000,
"status": "submitted"
},
"last_activity_at": "2026-04-17T19:45:00Z"
}
],
"page": 1,
"page_size": 10,
"total": 4
}