Skip to main content
GET
/
query-runs
/
{runId}
/
download
Get presigned download URL or CSV file
curl --request GET \
  --url https://api.flipsidecrypto.xyz/public/v3/query-runs/{runId}/download
{
  "queryRunId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "url": "<string>",
  "expiresIn": 43200
}

Path Parameters

runId
string<uuid>
required

Query Parameters

expiresIn
string

URL expiration time in seconds (default: 3600, max: 86400)

format
enum<string>

Download format: json (returns presigned URL) or csv (streams file directly)

Available options:
json,
csv

Response

Presigned download URL (json) or CSV file content (csv)

queryRunId
string<uuid>
required
url
string<uri>
required
expiresIn
integer
required
Required range: 1 <= x <= 86400