Skip to main content
GET
/
files
/
{id}
/
content
Download file content
curl --request GET \
  --url https://api.steuerboard.com/v1/files/{id}/content \
  --header 'Authorization: Bearer <token>' \
  --header 'x-client-id: <x-client-id>'
{
  "url": "https://s3.eu-central-1.amazonaws.com/bucket/...",
  "expiresIn": 600
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Headers

x-client-id
string<cuid>
required

The ID of the client

Example:

"cmf41ajzv003706un4i99q19z"

Path Parameters

id
string<cuid>
required

The ID of the item

Example:

"cmf41ajzv003706un4i99q19z"

Response

Presigned download URL

url
string<uri>
required

A temporary presigned URL to download the file

Example:

"https://s3.eu-central-1.amazonaws.com/bucket/..."

expiresIn
integer
required

Seconds until the URL expires

Example:

600