JS API clients handle uploads and file operations by wrapping Uploadcare Upload API and REST API. You can use it from within your Node.js app and in a browser.
Uploading (Upload API):
File management (REST API):
Image processing (URL API):
To access the Upload Client High-Level API, you need to create an instance of UploadClient
providing the necessary settings. Specifying YOUR_PUBLIC_KEY is mandatory. It
points to the specific Uploadcare project:
Once the UploadClient instance is created, you can start using the wrapper to upload files from binary data:
To upload files securely, you can use signed uploads.
For the REST API client you must specify both YOUR_PUBLIC_KEY and YOUR_SECRET_KEY:
Please, read the REST API client’s authentication docs before use it.
Read the full documentation on JS API clients GitHub.