Create A New Listing
POST
https://api.getcovent.com/api/v1/listingsCreate a new listing with pricing, property details, and initial status.
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/listings" \
-H "Authorization: Bearer <API_KEY>" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"headline": "Off-market duplex in central Phoenix",
"status": "draft",
"address": {
"street": "101 W Adams St",
"city": "Phoenix",
"state": "AZ",
"zip": "85003"
},
"pricing": {
"asking_price": 385000,
"assignment_fee": 15000
},
"property_details": {
"property_type": "duplex",
"bedrooms": 4,
"bathrooms": 2,
"square_feet": 1980
}
}'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/jsonheadlinestringRequired
headline request field.
Example: Off-market duplex in central PhoenixstatusstringRequired
status request field.
Example: draftaddressobjectRequired
address request field.
Example: {"street":"101 W Adams St","city":"Phoenix","state":"AZ","zip":"85003"}pricingobjectRequired
pricing request field.
Example: {"asking_price":385000,"assignment_fee":15000}property_detailsobjectRequired
property_details request field.
Example: {"property_type":"duplex","bedrooms":4,"bathrooms":2,"square_feet":1980}Response
200application/jsonidstringRequired
id response field.
Example: lst_123headlinestringRequired
headline response field.
Example: Off-market duplex in central PhoenixstatusstringRequired
status response field.
Example: draftaddressobjectRequired
address response field.
Example: {"street":"101 W Adams St","city":"Phoenix","state":"AZ","zip":"85003"}pricingobjectRequired
pricing response field.
Example: {"asking_price":385000,"assignment_fee":15000}property_detailsobjectRequired
property_details response field.
Example: {"property_type":"duplex","bedrooms":4,"bathrooms":2,"square_feet":1980}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": "lst_123",
"headline": "Off-market duplex in central Phoenix",
"status": "draft",
"address": {
"street": "101 W Adams St",
"city": "Phoenix",
"state": "AZ",
"zip": "85003"
},
"pricing": {
"asking_price": 385000,
"assignment_fee": 15000
},
"property_details": {
"property_type": "duplex",
"bedrooms": 4,
"bathrooms": 2,
"square_feet": 1980
},
"created_at": "2026-04-17T20:00:00Z",
"updated_at": "2026-04-17T20:00:00Z"
}