Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
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 requestsurl = "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.
vk_
Volume name
A single-shot PUT URL (<= 5 GiB) or a multipart-init descriptor