Volumes
Create upload part URL
POST
Create upload part URL
Authorizations
API key with the vk_ prefix. Create one from the dashboard.
Path Parameters
Volume name
Response
A presigned PUT URL for one multipart part
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/part \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"path": "<string>",
"upload_id": "<string>",
"part_number": 123
}
'import requests
url = "https://api.veri.studio/v1/volumes/{name}/upload-url/part"
payload = {
"path": "<string>",
"upload_id": "<string>",
"part_number": 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>', upload_id: '<string>', part_number: 123})
};
fetch('https://api.veri.studio/v1/volumes/{name}/upload-url/part', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"url": "<string>"
}API key with the vk_ prefix. Create one from the dashboard.
Volume name
A presigned PUT URL for one multipart part
curl --request POST \
--url https://api.veri.studio/v1/volumes/{name}/upload-url/part \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"path": "<string>",
"upload_id": "<string>",
"part_number": 123
}
'import requests
url = "https://api.veri.studio/v1/volumes/{name}/upload-url/part"
payload = {
"path": "<string>",
"upload_id": "<string>",
"part_number": 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>', upload_id: '<string>', part_number: 123})
};
fetch('https://api.veri.studio/v1/volumes/{name}/upload-url/part', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"url": "<string>"
}