Volumes
Create upload URL
POST
Create upload URL
Authorizations
API key with the vk_ prefix. Create one from the dashboard.
Path Parameters
Volume name
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://api.veri.studio/v1/volumes/{name}/upload-url \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"path": "<string>",
"size_bytes": 123
}
'import requests
url = "https://api.veri.studio/v1/volumes/{name}/upload-url"
payload = {
"path": "<string>",
"size_bytes": 123
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({path: '<string>', size_bytes: 123})
};
fetch('https://api.veri.studio/v1/volumes/{name}/upload-url', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"type": "<string>",
"url": "<string>"
}API key with the vk_ prefix. Create one from the dashboard.
Volume name
curl --request POST \
--url https://api.veri.studio/v1/volumes/{name}/upload-url \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"path": "<string>",
"size_bytes": 123
}
'import requests
url = "https://api.veri.studio/v1/volumes/{name}/upload-url"
payload = {
"path": "<string>",
"size_bytes": 123
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({path: '<string>', size_bytes: 123})
};
fetch('https://api.veri.studio/v1/volumes/{name}/upload-url', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"type": "<string>",
"url": "<string>"
}