Quick Start
Build applications around the features of VIDEO.TAXI. Manage your live and on-demand video content with the VIDEO.TAXI API. Live transcribe and translate your audio streams in real-time.
We use a GraphQL API to provide you with a flexible and powerful way to interact with VIDEO.TAXI. The GraphiQL interface is a great way to explore the API and test queries and mutations.
Setup:
- Create an API key in the VIDEO.TAXI dashboard to authenticate your requests.
- Put the API key in the
Authorization
header with the valueBearer YOUR_API_KEY
.
Endpoint: https://service.video.taxi/graphiql
Header: Authorization Bearer YOUR_API_KEY
Language-specific Quick Start
We provide examples for the basic operations in popular programming languages.
Python
This example relies on the gql
library to interact with the GraphQL API. Any other library or even raw HTTP requests can be used if you know what you are doing.
Setup the environment:
Create a video_taxi.py
file and add the following code:
Launch the script with API_KEY=YOUR_API_KEY python3 video_taxi.py
.
Node.js
This example relies on the graphql-request
library to interact with the GraphQL API. Any other library or even raw HTTP requests can be used if you know what you are doing.
Install the dependency:
Create a video_taxi.js
file and add the following code:
Launch the script with API_KEY=YOUR_API_KEY node video_taxi.js
.