Endpoints
Run Agent
Initiates an agent run with specified parameters
POST
/
run_agent
Copy
curl --request POST \
--url https://backend.trykura.com/run_agent \
--header 'Content-Type: application/json' \
--data '{
"agent_id": "<string>",
"parameters": {},
"api_key": "<string>",
"auth_token": "<string>",
"run_async": true
}'
Copy
{
"agent_run_url": "https://app.trykura.com/public-session-viewer/250ba43a-9597-486a-b718-aa61280fdd65",
"session_id": "250ba43a-9597-486a-b718-aa61280fdd65",
"agent_output": "<any>",
"error_message": "<string>"
}
Body
application/json
Response
200
application/json
Agent run initiated successfully
Response schema for agent run
Copy
curl --request POST \
--url https://backend.trykura.com/run_agent \
--header 'Content-Type: application/json' \
--data '{
"agent_id": "<string>",
"parameters": {},
"api_key": "<string>",
"auth_token": "<string>",
"run_async": true
}'
Copy
{
"agent_run_url": "https://app.trykura.com/public-session-viewer/250ba43a-9597-486a-b718-aa61280fdd65",
"session_id": "250ba43a-9597-486a-b718-aa61280fdd65",
"agent_output": "<any>",
"error_message": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.