POST
/
synthetic
/
v1
/
uploadURL
curl --request POST \
  --url https://api.aceaicompany.com/synthetic/v1/uploadURL \
  --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 upload a dataset to the storage bucket.

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 uploaded.
username
string
required

Username associated with this request.

filename
string
required

The name of the file to be uploaded or downloaded.

Response

200
application/json
Signed URL successfully generated.
signed_url
string
required

A time-limited URL for uploading or downloading data.

Example:

"https://storage.google.com/..."