curl --request GET \
--url https://api.superglue.ai/v1/runs \
--header 'Authorization: Bearer <token>'{
"data": [
{
"runId": "7f3e9c1a-2b4d-4e8f-9a3b-1c5d7e9f2a4b",
"toolId": "550e8400-e29b-41d4-a716-446655440000",
"status": "success",
"metadata": {
"startedAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z",
"durationMs": 5234
},
"tool": {
"id": "<string>",
"version": "2.1.0"
},
"toolPayload": {},
"data": {},
"error": "Connection timeout after 30 seconds",
"stepResults": [
{
"stepId": "<string>",
"success": true,
"data": {},
"error": "<string>"
}
],
"options": {},
"requestSource": "api",
"traceId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
],
"page": 1,
"limit": 50,
"total": 327,
"hasMore": true
}curl --request GET \
--url https://api.superglue.ai/v1/runs \
--header 'Authorization: Bearer <token>'{
"data": [
{
"runId": "7f3e9c1a-2b4d-4e8f-9a3b-1c5d7e9f2a4b",
"toolId": "550e8400-e29b-41d4-a716-446655440000",
"status": "success",
"metadata": {
"startedAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z",
"durationMs": 5234
},
"tool": {
"id": "<string>",
"version": "2.1.0"
},
"toolPayload": {},
"data": {},
"error": "Connection timeout after 30 seconds",
"stepResults": [
{
"stepId": "<string>",
"success": true,
"data": {},
"error": "<string>"
}
],
"options": {},
"requestSource": "api",
"traceId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
],
"page": 1,
"limit": 50,
"total": 327,
"hasMore": true
}Static API key authentication using Bearer token scheme.
Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
API keys can be generated in your superglue dashboard.
running, success, failed, aborted x <= 100List of runs
Show child attributes
Unique identifier for this run (maps to 'id' in GraphQL schema)
"7f3e9c1a-2b4d-4e8f-9a3b-1c5d7e9f2a4b"
ID of the tool that was executed
"550e8400-e29b-41d4-a716-446655440000"
Execution status:
running, success, failed, aborted "success"
The inputs and options provided when running the tool (maps to 'toolPayload' in GraphQL)
Tool execution results (only present when status is success, maps to 'toolResult' in GraphQL)
Error message (only present when status is failed or aborted)
"Connection timeout after 30 seconds"
Results from each execution step (only for multi-step tools)
Execution options that were used for this run
Source identifier for where the run was initiated
"api"
Trace ID for this run (for debugging and log correlation)
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
1
50
327
true
Was this page helpful?