UBIK Agent will launch soon, join the waitlist to get access!
import requests
url = "https://app.ubik-agent.com/api/v1/tool-executions/{execution_id}"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "exec_123456789",
"tool_id": "d1e2f3a4-b5c6-7890-1234-567890abcdef",
"user_id": 123,
"status": "completed",
"inputs": {
"stock_symbol": "ACME"
},
"outputs": {
"revenue": 1000000,
"profit": 250000
},
"created_at": "2025-09-28T12:00:00Z",
"started_at": "2025-09-28T12:00:01Z",
"completed_at": "2025-09-28T12:00:05Z"
}Retrieves the status and result of a specific tool execution.
import requests
url = "https://app.ubik-agent.com/api/v1/tool-executions/{execution_id}"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "exec_123456789",
"tool_id": "d1e2f3a4-b5c6-7890-1234-567890abcdef",
"user_id": 123,
"status": "completed",
"inputs": {
"stock_symbol": "ACME"
},
"outputs": {
"revenue": 1000000,
"profit": 250000
},
"created_at": "2025-09-28T12:00:00Z",
"started_at": "2025-09-28T12:00:01Z",
"completed_at": "2025-09-28T12:00:05Z"
}Documentation Index
Fetch the complete documentation index at: https://docs.ubik-agent.com/llms.txt
Use this file to discover all available pages before exploring further.
The unique identifier of the tool execution.
Successful Response
The unique identifier for the execution instance.
The ID of the tool that was executed.
The final status of the execution.
The original inputs provided to the tool.
Timestamp when the execution was created.
The ID of the user who initiated the execution.
The outputs generated by the tool.
If the execution failed, this contains the error message.
Timestamp when the execution started processing.
Timestamp when the execution completed or failed.
Was this page helpful?