Connect to Any Service
AI-ul poate apela orice API extern: servicii de plăți, shipping, weather, maps, sau API-uri custom ale business-ului tău.
Generic API Function
{
"name": "call_api",
"description": "Make HTTP request to external API",
"parameters": {
"type": "object",
"properties": {
"service": {
"type": "string",
"enum": ["weather", "shipping", "payments", "maps", "custom"]
},
"method": {
"type": "string",
"enum": ["GET", "POST", "PUT", "PATCH"]
},
"endpoint": {
"type": "string"
},
"body": {
"type": "object"
},
"headers": {
"type": "object"
}
},
"required": ["service", "endpoint"]
}
}Integration Examples
Weather API
GET /weather?city={city}Recomandări bazate pe vreme pentru programări outdoor
Shipping API
GET /track/{tracking_number}Tracking în timp real pentru comenzi
Payment Gateway
POST /payments/chargeProcesare plăți și verificare status
Maps API
GET /directions?from={a}&to={b}Calcul distanță și timp de drum
Authentication Methods
API Key
Header sau query parameter authentication.
OAuth 2.0
Token-based auth cu refresh automat.
Basic Auth
Username/password encoding.
JWT
JSON Web Tokens pentru API calls.
Pre-built Connectors
Payments
SMS/Voice
Location
Notifications
Support
E-commerce
Your API