diff --git a/README.md b/README.md
index 182d36a8d905..c4d0abd86207 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,15 @@
-
-
-
-
-
-
+// In your ARIA chat widget - works for ALL platforms
+const response = await fetch('/api/chat', {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify({
+ model: 'claude-sonnet-4-6',
+ max_tokens: 1000,
+ system: 'You are ARIA, SecureID security advisor...',
+ messages: conversationHistory
+ })
+});
+const data = await response.json();