Custom Action Skills
Give your AI agents the ability to take tangible actions on behalf of the user.
Write to any REST API
Custom API Skills let your agents call any external endpoint as a tool during a conversation — placing a bet, processing a withdrawal, or looking up a proprietary order ID in a custom backend system.
Authentication Configurations
We support Bearer Tokens, API Key Headers, and Basic Auth. All credentials are encrypted with AES-256-GCM before storage to ensure maximum compliance.
Dynamic Parameter Templating
Define precisely what parameters your system requires, and the AI agent intelligently maps the conversational context to the JSON payload via template substitution.
POST /api/v1/orders/cancel
Authorization: Bearer {metadata.secure_token}
Content-Type: application/json
{
"order_id": "{order_id_from_chat}",
"reason": "Customer requested via Inquiru AI interface",
"refund_amount": "{amount}"
}