Quick API Interaction

Interact with the backend directly using curl.

Get Agent Details

curl https://api.qude.ai/api/agent/{agentName}

Interact via GET Method

curl "https://api.qude.ai/api/agent/Aura/interact?message=Hello!"

Interact via POST Method

curl -X POST "https://api.qude.ai/api/agent/Aura/interact" \
-H "Content-Type: application/json" \
-d '{"message": "Hello, Aura?"}'

Last updated