Use this API key to integrate with your applications:
Loading...
Quick Start
// Upload file
fetch('/api/v1/upload', {
method: 'POST',
headers: {
'X-API-Key': 'YOUR_API_KEY'
},
body: formData
});
// Download file
fetch('/api/v1/download', {
method: 'POST',
headers: {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
fileName: 'example.pdf'
})
});
// List files
fetch('/api/v1/list', {
headers: {
'X-API-Key': 'YOUR_API_KEY'
}
});