Skip to main content
Get OCR text positions for a frame
curl --request GET \
  --url https://api.example.com/frames/{frame_id}/ocr
{
  "frame_id": 123,
  "text_positions": [
    {
      "text": "<string>",
      "x": 123,
      "y": 123,
      "width": 123,
      "height": 123
    }
  ]
}

Path Parameters

frame_id
integer
required

ID of the frame

Response

200 - application/json

OCR data with text positions

frame_id
integer
required
text_positions
object[]
required