Skip to main content
POST
/
v1
/
core
/
recordings
/
signed-urls
Get a signed URL for uploading a recording
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 '
{
  "fileType": "<string>",
  "fileSize": 1
}
'
{
  "data": {
    "uploadUrl": "<string>",
    "downloadUrl": "<string>",
    "expiresAt": "<string>"
  },
  "cursor": "<string>",
  "pageSize": 123,
  "limit": 123,
  "total": 123,
  "hasNextPage": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.siro.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-siro-auth-token
string
header
default:<oauth-access-token>
required

OAuth access token for user-scoped requests (Authorization Code or machine-to-machine). Send header x-siro-auth-token: . Not an organization API key.

Body

application/json
fileType
string
required

File type (limited to mp3, aac, wav)

fileSize
integer
required

Size of the file in bytes

Required range: x > 0

Response

Get a signed URL for uploading a recording

data
object
required
cursor
pageSize
number
limit
number
total
number | null
hasNextPage
boolean