{
"image": "string"
}
curl --location --request POST '/ocr_image' \
--header 'Content-Type: application/json' \
--data-raw '{
"image": "string"
}'
{
"status": "ok",
"retcode": 0,
"data": {
"texts": [
{
"text": "string",
"confidence": 0,
"coordinates": [
{
"x": 0,
"y": 0
}
]
}
],
"language": "string"
}
}