Download a workspace artifact
curl --request GET \
--url https://aquila.attaxr.com/api/workspace/raw/{file} \
--cookie better-auth.session_token=const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/workspace/raw/{file}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/workspace/raw/{file}"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Workspace
Download a workspace artifact
The artifact’s raw bytes with its derived content type. Used for downloads and inline image previews. Scriptable documents (HTML, SVG, XML) force an attachment disposition, and every response is served with a sandboxing CSP so stored content can never act as an executable document on the dashboard origin.
GET
/
api
/
workspace
/
raw
/
{file}
Download a workspace artifact
curl --request GET \
--url https://aquila.attaxr.com/api/workspace/raw/{file} \
--cookie better-auth.session_token=const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/workspace/raw/{file}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/workspace/raw/{file}"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}
