Skip to main content
GET
/
workflows
/
runs
/
{run_id}
/
results
/
download-links
List Run Result Downloads
curl --request GET \
  --url https://api.sixtyfour.ai/workflows/runs/{run_id}/results/download-links
[
  {
    "filename": "<string>",
    "storage_bucket": "<string>",
    "row_count": 0,
    "block_number": 123,
    "created_at": "<string>",
    "message": "<string>",
    "content_type": "<string>",
    "download_url": "<string>",
    "download_expires_in_seconds": 900,
    "results": [
      {}
    ]
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.sixtyfour.ai/llms.txt

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

Headers

x-api-key
string | null

Path Parameters

run_id
string<uuid>
required

Query Parameters

format
string
default:csv

Result format: 'csv' or 'json'

Response

Successful Response

filename
string
required

Result file name.

storage_bucket
string
required

Storage bucket containing the file.

row_count
integer
default:0

Number of rows in the file.

block_number
integer | null

Block sequence number that produced the file.

created_at
string | null

Timestamp when the record was created.

message
string | null

Error or status message, if any.

content_type
string | null

MIME type of the file.

download_url
string | null

Signed download URL; null if signing failed.

download_expires_in_seconds
integer
default:900

Seconds until download_url expires.

results
Results · object[] | null

Inline rows when the file is small enough to embed; otherwise null.