Serve Raw
GET
/api/v1/files/raw
const url = 'https://aura.strangeworks.com/api/v1/files/raw?token=';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://aura.strangeworks.com/api/v1/files/raw?token=' \ --header 'Authorization: Bearer <token>'Byte-serve leg for the tokenized download/zip URLs (dev + synthesized zips).
The single-use token is the credential — no Authorization header — mirroring presigned-download semantics; it was minted by an authorized read.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”token
Token
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
exampleValidation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "ctx": {}, "input": "example", "loc": [ "example" ], "msg": "example", "type": "example" } ]}