Start Your Free Trial
Get API credentials & start testing today โ no credit card required!
Start your FREE TRIAL today!
Introduction
These pages serve as a guide to get started with version 2 of the vzaar API.
vzaar is the go-to video hosting platform for business. Affordable, customizable and secure. Leverage the power of online video and enable commerce with vzaar.
For more details and signup, please visit https://vzaar.com
Live Examples
The REFERENCE page includes Try It
buttons in the top-right of each example. You can either paste your own credentials from your API Settings there or use demo
/demo
to try our public-access read-only API.
Quick Start
Get started with the vzaar REST API in under 60 seconds!
- Navigate to your API Settings
- Click Generate API Token
- Make a note of the Client ID and Auth Token credentials
- Open a terminal and run the following command, inserting the credentials into the placeholders:
curl -X GET \
-H "X-Client-Id: <client_id>" \
-H "X-Auth-Token: <auth_token>" \
"https://api.vzaar.com/api/v2/videos"
{
"data": [
{
"id": 123,
"title": "My Video",
"description": "Video Description",
"state": "ready",
...
HTTPS Required
vzaar's API only supports
HTTPS
(HTTP
overTLS
) โย plainHTTP
is not allowed and will receive a426 Upgrade Required
response.For example, https://api.vzaar.com/api/v2/videos will work as described above but http://api.vzaar.com/api/v2/videos will be met with a client error.
Need Help?
If you have any questions or need help, our expert support staff are here to help:
- Call us: [+44 20 7820 6288](tel: +44 20 7820 6288)
- Email us: [[email protected]](mailto: [email protected])
Updated 2 years ago