AI Video Subtitle Converter API
API Endpoint Specifications
- Endpoint Path: /api/1/video-subtitle-generator
- Type of Data: JSON & 1/minute
- Data Source: BUYFROMLO
- Request Limit: 30 videos/month
- Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
AI Video Subtitle Converter API Endpoint Basic Info
API Endpoint Path
required
AI Video Subtitle Converter API
api/1/video-subtitle-generator
Call Method
Required
POST
Type of Data Return
JSON
Downloadable File Link from the response
Available API Arguments & Parameters
token
required
BUYFROMLO API token. Free and paid subscription APIs are both available: /api/1/video-subtitle-generator, and accessible to on-site APP on /app/1/video-subtitle-generator as well
youtubevideoID
required
Upload an audio flac file on the on-site app, or input a downloadable link using API
AI Video Subtitle Converter API
api/1/video-subtitle-generator
Code Integration and Response
Python Code Sample
import requests
apiendpoint = "https://api.buyfromlo.com/api/1/video-subtitle-generator"
## Required Arguments & Parameters ##
token = "your buyfromlo token"
youtubevideoID = ""
headers={"Authorization": "Bearer " + token}
## Call the api ##
response = requests.post(apiendpoint, json={"youtubevideoID": youtubevideoID}, headers=headers)
print(response.status_code)
print(response.json())
JSON Response Sample
{
"Subtitle Link": "a link"
}