Skip to main content
GET
Get a download link for a file
Stable since 2025-01-01 — unchanged in 2026-06-01.

Authorizations

Authorization
string
header
required

Access token from POST /auth (the data.access_token value).

x-api-key
string
header
required

API key issued by Kira. Required on every request, including /auth.

Headers

X-Api-Version
string

Optional. The date-versioned API version to apply for this request (e.g. 2026-04-14). When sent it always wins, even over your pinned account default. When omitted, the API uses your account's pinned version if set, otherwise a baseline default.

Example:

"2026-06-01"

Path Parameters

rfi_id
string<uuid>
required

RFI UUID.

item_id
string<uuid>
required

Item UUID. The item must be a document item of this RFI.

document_id
string<uuid>
required

The file's own id, as returned in documents[].

Response

A pre-signed link and when it expires.

A short-lived link to the file, not the bytes. A JSON body rather than a 302 so your own code decides what to do next and the expiry is readable. The URL is a bearer credential until expires_at — do not store it, log it, or embed it in a page; request a new one when you need the file again.

download_url
string<uri>
required

Pre-signed URL. Downloads under the file's own file_name.

expires_at
string<date-time>
required

When the link stops working. Minutes away, deliberately.