
Use Apply Colour Filter tool to apply Instagram-style colour-grade preset filters to a video.
In-app method
- Click Tools on the left panel
- Select Apply Colour Filter
- In the Input Files field, upload or paste your Video URL
- Select a Filter
- Hit Send Request

API method
Send a POST request to the /v5/tools/apply_color_filter endpoint with a string of your "video_url" and "filter" inputs for color grading.
var data = {
"video_url": "https://cdn.bannerbear.com/sample_videos/clip.mp4",
"filter": "teal-and-orange"
}
fetch('https://api.bannerbear.com/v5/tools/apply_color_filter', {
method: 'POST',
body: JSON.stringify(data),
headers: {
'Content-Type' : 'application/json',
'Authorization' : `Bearer ${API_KEY}`
}
})

