Retrieve marketing listings for a specific account. This endpoint is designed for embedding listings on external websites and marketing platforms.
Security
BearerAuth
- Mock serverhttps://docs.rentengine.io/_mock/openapi/openapi/marketing/listings/{accountId}
- Production environmenthttps://app.rentengine.io/api/public/v1/marketing/listings/{accountId}
- Staging environmenthttps://staging-app.rentengine.io/api/public/v1/marketing/listings/{accountId}
curl -i -X GET \
'https://docs.rentengine.io/_mock/openapi/openapi/marketing/listings/4b88ff32-8ba0-4bbf-8e60-c789909ac176?utm_source=website_widget&limit=25&page_number=1' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Success. Returns a list of marketing listings.
Array []
Type of property
Enum:"Single Family""Duplex""Apartment Unit""Condo Unit""Townhouse""ADU""Room""Commercial Office""Commercial Retail""Commercial Industrial"
Example:"Single Family"
Marketing description of the property
Example:"Spacious 3 bedroom home with modern amenities..."
One-time fees required at move-in
Example:
[ { "name": "Admin Fee", "amount": 150, "type": "dollar" } ]
Recurring monthly fees in addition to rent
Example:
[ { "name": "Pet Fee", "amount": 50, "type": "dollar" } ]
Move-in specials and promotional offers. Combines specials from the unit, floorplan, and multifamily property (if applicable). Expired specials are filtered out. When end_date is omitted, the special has no end date (ongoing). Public listing pages should conditionally show the date range only when end_date is present.
Example:
[ { "description": "First month free!", "start_date": "2024-01-01", "end_date": "2024-03-31" }, { "description": "$500 off move-in costs", "start_date": "2024-01-15" } ]
Response
[ { "id": "12345", "email": "leasing@example.com", "phone": "5551234567", "propertyType": "Single Family", "companyName": "ABC Property Management", "address": "123 Main St #2", "city": "San Francisco", "state": "California", "zip": "94111", "title": "Beautiful 3BR Home in Prime Location", "description": "Spacious 3 bedroom home with modern amenities...", "beds": "3", "baths": "2", "dateAvailable": "1/15/2024", "rentAmount": "2500.23", "depositAmount": "2500.23", "squareFootage": "1500", "latitude": 37.7749, "longitude": -122.4194, "applicationFee": "50", "leaseProcessingFee": "150.00", "isFurnished": false, "dogs": true, "cats": true, "applyUrl": "https://rentengine.io/listings/12345", "btnUrl": "https://app.rentengine.io/ss/12345", "btnText": "Schedule a Showing", "waitlistIcon": "snooze", "waitlistLabel": "Wait List", "waitlistTurnOffDate": "2024-02-01", "virtualTour": "https://www.youtube.com/watch?v=abc123", "pmName": "ABC Property Management", "pmEmail": "pm@example.com", "pmPhone": "5551234567", "externalId": "EXT-12345", "propertyGroup": null, "leaseDescription": "12 months", "moveInFees": [ … ], "monthlyFees": [ … ], "specials": [ … ], "photos": [ … ] } ]