Skip to main content
GET
/
runs
/
{runId}
/
results
Get full run results
curl --request GET \
  --url https://api.superglue.ai/v1/runs/{runId}/results \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "runId": "7f3e9c1a-2b4d-4e8f-9a3b-1c5d7e9f2a4b",
    "success": true,
    "data": {},
    "stepResults": [
      {
        "stepId": "<string>",
        "success": true,
        "data": {},
        "error": "<string>"
      }
    ],
    "toolPayload": {},
    "error": "<string>",
    "storedAt": "2023-11-07T05:31:56Z"
  },
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.superglue.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Static API key authentication using Bearer token scheme. Include your API key in the Authorization header: Authorization: Bearer YOUR_API_KEY

Alternatively, you can use the token query parameter to authenticate.

API keys can be generated in your superglue dashboard.

Path Parameters

runId
string
required

Query Parameters

truncate
enum<string>
default:false

If "true", truncate large results for preview

Available options:
true,
false

Response

Run results

success
boolean
data
object

Full (non-truncated) run results fetched from storage

message
string

Present when no stored results are available