Integrate CodeNameZee into custom portals, CRM listings, or inject your dynamic floating real estate bubble programmatically.
CodeNameZee provides secure REST JSON endpoints. All routes return structured payloads. Custom chatbot styling, system settings, and lead alerts configured in the dashboard reflect automatically in both widget embeddings and API responses.
https://api.codenamezee.comTo load the customized chatbot bubble on any external domain (WordPress, Wix, Webflow, custom HTML), append this script in the footer or header code. The service delivers a CORS-optimized bundle compiled specifically for your agent configurations.
<script src="https://api.codenamezee.com/api/widget/bot_8f39b1a0c4" async defer> </script>
Send visitor queries to trigger similarity lookups on the chatbot's knowledge chunks and invoke OpenAI's completions engine. Accommodates conversation transcripts to preserve thread memory context.
curl -X POST https://api.codenamezee.com/api/chat \
-H "Content-Type: application/json" \
-d '{
"botId": "bot_8f39b1a0c4",
"message": "Do you have any 4,500 Sq Ft villas in Westlake?",
"history": [
{ "sender": "bot", "text": "Welcome to Premium Realty! How can I help?" }
]
}'Triggered automatically once a visitor inputs contact qualifiers. Persists details in the agency leads directory, updates dashboard widgets, and triggers the Twilio dispatch routing to send real-time alerts.
curl -X POST https://api.codenamezee.com/api/leads \
-H "Content-Type: application/json" \
-d '{
"botId": "bot_8f39b1a0c4",
"name": "David Miller",
"phone": "+15125551234",
"email": "david@example.com",
"notes": "Budget: 2.5 Million USD. Looking for immediate viewing."
}'Train your bot asynchronously. Submitting a listing page link or brochure texts initiates automated crawling/parsing and chunks text strings before embedding into pgvector.
curl -X POST https://api.codenamezee.com/api/train \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"botId": "bot_8f39b1a0c4",
"sourceType": "url",
"sourceData": "https://premiumrealty.com/listings/westlake-villa"
}'