Quickstart
Get your first Arrotech Hub API call running in less than 5 minutes.
1. Get your API Key
Login to the Arrotech Hub Dashboard and navigate to Developer Settings to generate your API Key.
2. Your First API Call
The simplest way to verify your connection is to check the available LLM providers.
- cURL
- Python
- JavaScript
curl -X GET "https://prod.api.arrotechsolutions.com/chat/providers" \
-H "Authorization: Bearer YOUR_API_KEY"
import requests
url = "https://prod.api.arrotechsolutions.com/chat/providers"
headers = {"Authorization": "Bearer YOUR_API_KEY"}
response = requests.get(url, headers=headers)
print(response.json())
fetch('https://prod.api.arrotechsolutions.com/chat/providers', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
})
.then(response => response.json())
.then(data => console.log(data));
3. What's Next?
Now that you've made your first call, you can:
- Connect a platform like Slack or Zoho.
- Interact with MCP tools to give your AI real-world capabilities.
- Deploy an Autonomous Agent to handle tasks in the background.
[!important] Remember to keep your API key secret. If compromised, revoke it immediately in the dashboard.