UAE real-estate AI
for your platform
All 14 AgentsAI tools — listings, emails, WhatsApp, CMAs, valuations, compliance — as a REST API. UAE-tuned, multilingual, RERA-aware.
Sub-2s responses
Fast model selection for production latency.
UAE-tuned
RERA, Bayut, Property Finder, AED, sqft — native.
Simple REST
JSON in, JSON out. No SDK needed (but one's coming).
Built-in analytics
Track per-key usage, latency, tool breakdown.
One call. One listing.
Bring your own property data, get back UAE-ready copy in seconds.
cURL
curl -X POST https://agentsai.ae/api/v1/listing \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"propertyType": "Apartment",
"bedrooms": 2,
"sizeSqft": 1450,
"location": "Dubai Marina",
"building": "Marina Heights T1",
"price": 2400000,
"priceType": "sale",
"view": "Marina + Burj",
"features": ["renovated kitchen", "balcony"],
"amenities": ["pool", "gym", "concierge"],
"tone": "luxury",
"language": "en"
}'Node.js
const r = await fetch('https://agentsai.ae/api/v1/listing', {
method: 'POST',
headers: {
'Authorization': `Bearer ${process.env.AGENTSAI_API_KEY}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
propertyType: 'Villa',
bedrooms: 4, sizeSqft: 3800,
location: 'Arabian Ranches',
price: 5500000, priceType: 'sale',
tone: 'family', language: 'en',
}),
});
const { output, usage } = await r.json();
console.log(output);Endpoints
Every tool in the AgentsAI app is available via API. Identical inputs, identical outputs.
/api/v1/listingGenerate property listing copy/api/v1/emailFollow-up email drafts/api/v1/whatsappWhatsApp templates (UAE-tuned)/api/v1/cold-callCold-call scripts/api/v1/chatMulti-turn conversational AI (UAE real-estate context)/api/v1/cmaCMA reports with comparables/api/v1/valuationProperty valuation + per-sqft benchmark/api/v1/complianceRERA / Bayut / Property Finder compliance check/api/v1/photo-descriptionImage → listing description (vision)/api/v1/personaBuyer persona from limited context/api/v1/contractContract clause generatorAPI pricing
API access is bundled with our app plans: Starter includes API Starter, Pro includes API Pro, Team includes API Enterprise. See app pricing.
Starter (incl. API Starter)
or AED 23/mo billed annually
- All 14 AI tools
- REST + JSON
- English + Arabic
- Email support
- 99.5% uptime
- Full app access
Pro (incl. API Pro)
or AED 63/mo billed annually
- Everything in Starter
- Vision endpoints (photo → listing)
- Webhooks
- Priority email support
- 99.9% uptime SLA
- Bulk listing import
Team (incl. API Enterprise)
or AED 199/mo billed annually
- Everything in Pro
- Up to 10 seats
- Brand-voice fine-tuning
- Custom endpoints
- Dedicated account manager
- 99.95% SLA
Common questions
Is the API live today?
Yes — it's live and self-serve. Sign up at /signup (or log in), then create an API key from your account page. First call works immediately.
Can I get a free trial?
The first 100 calls on each new API key are free. After that, monthly limits apply per your chosen tier.
Where is data hosted?
Compute runs in xAI infrastructure (their data-residency policy applies — API requests are not used to train their models). UAE PDPL-aware storage of inputs is on our side.
White-label?
Enterprise tier supports white-label responses (no AgentsAI branding in outputs) and custom system prompts.
Rate limits, retries, and backoff?
Standard token-bucket per API key. 429 includes Retry-After. We recommend exponential backoff in your client.
Where do I report a bug?
Email hello@hades.ae or via /support — you'll get a response within 24 hours on Pro+ tiers.
Ready to ship?
Request your API key and get the OpenAPI spec — 1 business day, no sales call required.
Generate API key