Individuals

Get Listings Associated

GEThttps://api.getcovent.com/api/v1/individuals/ind_123/listings?status=active&interaction_type=offer&page=1&page_size=10

Retrieve 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/json

idstringRequired

id path parameter.

Example: ind_123

statusstringRequired

status query parameter.

Example: active
interaction_typestringRequired

interaction_type query parameter.

Example: offer
pagenumberRequired

page query parameter.

Example: 1
page_sizenumberRequired

page_size query parameter.

Example: 10

Response

200application/json

itemsarrayRequired

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: 1
page_sizenumberRequired

page_size response field.

Example: 10
totalnumberRequired

total response field.

Example: 4

Response 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
}