POST
/
synthetic
/
v1
/
downloadURL
curl --request POST \
  --url https://api.aceaicompany.com/synthetic/v1/downloadURL \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "username": "<string>",
  "filename": "<string>"
}'
{
  "signed_url": "https://storage.google.com/..."
}

Purpose: Provides a signed URL to securely download a previously uploaded or generated dataset.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Username and filename for the dataset to be downloaded.

The body is of type object.

Response

200
application/json

Signed URL successfully generated.

The response is of type object.