Skip to main content
POST
/
v1
/
core
/
recordings
/
signed-urls
Get signed upload and download URLs
curl --request POST \
  --url https://api.siro.ai/v1/core/recordings/signed-urls \
  --header 'Content-Type: application/json' \
  --header 'x-siro-auth-token: <api-key>' \
  --data '
{
  "fileSizeInBytes": 123,
  "fileType": "<string>"
}
'
{
  "data": {
    "uploadUrl": "<string>",
    "downloadUrl": "<string>",
    "expiresAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

x-siro-auth-token
string
header
required

Custom authentication token for user-scoped endpoints

Body

application/json
fileSizeInBytes
integer
required

Size of the file in bytes

fileType
string
required

File type (limited to mp3, aac, wav)

Response

200 - application/json

Success

data
object