Skip to main content
GET
/
runs
/
{runId}
/
files
List file artifacts for a run
curl --request GET \
  --url https://api.superglue.ai/v1/runs/{runId}/files \
  --header 'Authorization: Bearer <token>'
{
  "fileArtifacts": [
    {
      "fileKey": "report",
      "filename": "monthly_report.csv",
      "contentType": "text/csv",
      "size": 52480,
      "downloadUrl": "https://s3.amazonaws.com/bucket/org/run-files/runId/report.csv?X-Amz-Expires=3600"
    }
  ]
}

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

Response

File artifacts list

fileArtifacts
object[]