Offers

Create A New Offer Against A Listing

POSThttps://api.getcovent.com/api/v1/offers

Create a new offer against a listing.

How to Call

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

curl -X POST "https://api.getcovent.com/api/v1/offers" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{
  "listing_id": "lst_123",
  "individual_id": "ind_123",
  "amount": 372000,
  "terms": {
    "inspection_period_days": 7,
    "close_of_escrow_days": 14
  },
  "notes": "Cash close, no financing contingency."
}'

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
Content-TypestringRequired

JSON request body header.

Example: application/json

listing_idstringRequired

listing_id request field.

Example: lst_123
individual_idstringRequired

individual_id request field.

Example: ind_123
amountnumberRequired

amount request field.

Example: 372000
termsobjectRequired

terms request field.

Example: {"inspection_period_days":7,"close_of_escrow_days":14}
notesstringRequired

notes request field.

Example: Cash close, no financing contingency.

Response

200application/json

idstringRequired

id response field.

Example: off_123
listing_idstringRequired

listing_id response field.

Example: lst_123
individual_idstringRequired

individual_id response field.

Example: ind_123
amountnumberRequired

amount response field.

Example: 372000
statusstringRequired

status response field.

Example: submitted
termsobjectRequired

terms response field.

Example: {"inspection_period_days":7,"close_of_escrow_days":14}
created_atstringRequired

created_at response field.

Example: 2026-04-17T19:45:00Z
updated_atstringRequired

updated_at response field.

Example: 2026-04-17T19:45:00Z

Response Example

{
  "id": "off_123",
  "listing_id": "lst_123",
  "individual_id": "ind_123",
  "amount": 372000,
  "status": "submitted",
  "terms": {
    "inspection_period_days": 7,
    "close_of_escrow_days": 14
  },
  "created_at": "2026-04-17T19:45:00Z",
  "updated_at": "2026-04-17T19:45:00Z"
}