Guides
Upload Large Resources
This guide will walk you through the steps to upload files larger than 5MB through the Verbalia API.
Prerequisites
- You have an API key. If not, you can get one by contacting us.
- You have python installed on your machine along with the
requests
library
Steps
Large files can be uploaded directly to our S3 bucket. You first request for a presigned post url, upload your file there, then initialize it as a resource.
Step 1: Get an upload URL
In addition to the upload url, it also contains additional fields you must pass in to the url.
Python
Step 2: Upload your file to the returned URL
It’s important to note that the URL returned in the previous step is only valid for a short period of time. You should upload your file as soon as possible after receiving the URL.
Python
Step 3: Create the resource from link
Python
Was this page helpful?