Getting Started with the Video Highlight API
Learn how to use the Video Highlight API to transcribe, summarize, and analyze videos.
You can use the Video Highlight API to transcribe, summarize, and analyze videos. This API is useful for creating video highlights, generating video transcripts, and extracting insights from videos.
Authentication
The Video Highlight API uses API keys for authentication. Visit your API Keys page to retrieve the API key you'll use in your requests.
Note: your API key is a secret! Do not share it with others or expose it in any client-side code (browsers, apps). Requests should be routed through server code where your API key can be securely loaded from an environment variable or key management service.
All API requests should include your API key in an Authorization HTTP header as follows:
Authorization: Bearer VIDEOHIGHLIGHT_API_KEY
Making your first request
Paste the command below into your terminal to run your first API request. Replace $VIDEOHIGHLIGHT_API_KEY
with your secret API key.
curl --location 'https://videohighlight.com/api-v1/transcripts/65_PmYipnpk?languageCode=en' \
--header 'Content-Type: application/json' \
--header 'API-Key: $VIDEOHIGHLIGHT_API_KEY'
Postman collection
The easiest way to get started with the Video Highlight API is to use the Postman collection. This collection includes all the API endpoints and example requests.
Install Postman
Download and install Postman tool from https://www.postman.com/downloads/.
Download the collection
Download the Video Highlight API collection from here.
The archive contains 2 files:
- the collection of API requests
- the list of environment variables that are used in the API collection where you can use your own Secret Key
Future changes and backward compatibility
The base URL for the Video Highlight API is:
https://videohighlight.com/api-v1
This URL will change in the future when significant changes are made to the API. Always refer to the API documentation for the latest information.