Returns the brokerage’s featured/promoted listings from IDX Broker. These are the listings the agent has manually promoted in their IDX Broker dashboard. Supports pagination.
cURL
curl --request POST \ --url https://dqgynnlsclfbqysauesf.supabase.co/functions/v1/api-router/v1/listings/featured \ --header 'Content-Type: application/json' \ --header 'X-ARIS-API-Key: <api-key>' \ --data ' { "brokerageId": "550e8400-e29b-41d4-a716-446655440000", "limit": 10, "page": 1 } '
{ "data": [ { "listingId": "a12345", "address": "123 Main St, Austin, TX 78701", "city": "Austin", "state": "TX", "zip": "78701", "price": "450000", "beds": 3, "baths": 2, "sqft": "1850", "photos": [ "<string>" ], "daysOnMarket": 14, "description": "<string>", "status": "Active", "detailsUrl": "<string>", "videoUrls": [ { "url": "<string>", "title": "<string>" } ] } ], "total": 123, "page": 123, "limit": 123, "hasMore": true }
"550e8400-e29b-41d4-a716-446655440000"
Filter to a specific agent's featured listings.
Filter to a specific office's featured listings.
10
1
Featured listings and pagination metadata.
Show child attributes