POST
/
api
/
v1
/
client
/
img2txt
/
price-calculation
Image to Text (OCR) Price Calculation
curl --request POST \
  --url http://localhost:8000/api/v1/client/img2txt/price-calculation \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "Nanonets_Ocr_S_F16",
  "language": "<string>",
  "format": "text"
}
'
{
  "data": {
    "price": 0.0093
  }
}

Body

application/json
model
string
required
Example:

"Nanonets_Ocr_S_F16"

language
string
format
enum<string>
Available options:
text,
json

Response

Price calculated

data
object