- https://llm-api.treasuredata.comhttps://llm-api.treasuredata.com/api/agents
- https://llm-api.eu01.treasuredata.comhttps://llm-api.eu01.treasuredata.com/api/agents
- https://llm-api.ap02.treasuredata.comhttps://llm-api.ap02.treasuredata.com/api/agents
- https://llm-api.treasuredata.co.jphttps://llm-api.treasuredata.co.jp/api/agents
curl -i -X POST \
https://llm-api.treasuredata.com/api/agents \
-H 'Authorization: TD1 <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"data": {
"type": "agents",
"attributes": {
"name": "name1",
"projectId": "00000000-0000-0000-0000-000000000001",
"modelType": "claude-4.5-haiku",
"maxToolIterations": 4,
"temperature": 0,
"variables": [
{
"name": "columns",
"toolTargetId": "00000000-0000-0000-0000-000000000001",
"toolTargetType": "knowledge_base",
"targetFunction": "LIST_COLUMNS"
}
],
"reasoningEffort": "LOW"
}
}
}'Response
{ "data": { "id": "00000000-0000-0000-0000-000000000001", "type": "agents", "links": { … }, "attributes": { … } } }