Create A New Offer Against A Listing
POST
https://api.getcovent.com/api/v1/offersCreate 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/jsonContent-TypestringRequired
JSON request body header.
Example: application/jsonlisting_idstringRequired
listing_id request field.
Example: lst_123individual_idstringRequired
individual_id request field.
Example: ind_123amountnumberRequired
amount request field.
Example: 372000termsobjectRequired
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/jsonidstringRequired
id response field.
Example: off_123listing_idstringRequired
listing_id response field.
Example: lst_123individual_idstringRequired
individual_id response field.
Example: ind_123amountnumberRequired
amount response field.
Example: 372000statusstringRequired
status response field.
Example: submittedtermsobjectRequired
terms response field.
Example: {"inspection_period_days":7,"close_of_escrow_days":14}created_atstringRequired
created_at response field.
Example: 2026-04-17T19:45:00Zupdated_atstringRequired
updated_at response field.
Example: 2026-04-17T19:45:00ZResponse 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"
}