Extract visible text from video frames or a single image using OCR. Returns timestamped text detections with bounding boxes.
Timeout: 300s | Provider: triggerdev | Accepts: video, image
Request
curl -X POST https://api.rendobar.com/jobs \
-H "Authorization: Bearer rb_your_key" \
-H "Content-Type: application/json" \
-d '{
"type": "extract.text",
"inputs": {
"source": "https://cdn.rendobar.com/assets/examples/sample.mp4"
},
"params": {
"sampleInterval": 2
}
}'
Parameters
Seconds between sampled frames
OCR language hint (BCP-47 code)
Response
{
"data": {
"id": "job_abc123",
"status": "dispatched"
}
}