cURL
curl --request POST \ --url https://api.artosai.com/agents/{agentId}/call \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "documentUrls": [ "<string>" ], "instructions": "<string>" } '
{ "result": { "output": "<string>", "format": "<string>", "processing_time_seconds": 123, "documents_processed": 123, "connectors_used": [ "<string>" ] }, "agent_id": "<string>", "execution_id": "<string>", "timestamp": "2023-11-07T05:31:56Z" }
Runs the specified agent outside of a pipeline using provided documents and optional instructions.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
List of S3 URLs for input documents.
Optional instructions for this execution.
Agent execution result
Show child attributes