Get OpenAPI specification
curl --request GET \
--url https://api.videobgremover.com/v1/openapi \
--header 'X-Api-Key: <api-key>'const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.videobgremover.com/v1/openapi', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.videobgremover.com/v1/openapi"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)"<string>"{
"error": "Job not found or does not belong to user"
}Get OpenAPI specification
Download the VideoBGRemover OpenAPI specification in YAML format to explore API endpoints, request schemas and responses for your integration.
GET
/
v1
/
openapi
Get OpenAPI specification
curl --request GET \
--url https://api.videobgremover.com/v1/openapi \
--header 'X-Api-Key: <api-key>'const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.videobgremover.com/v1/openapi', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.videobgremover.com/v1/openapi"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)"<string>"{
"error": "Job not found or does not belong to user"
}Authorizations
API key with format vbr_ followed by 32 characters
Response
OpenAPI specification retrieved successfully
The response is of type string.
