cURL
curl --request POST \ --url https://www.norns.ai/api/v0/ocr \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "imageUrl": "<string>" }'
{ "success": true, "data": { "text": { "description": "<string>", "sentences": [ { "text": "<string>", "startIndex": 123, "endIndex": 123 } ] }, "usage": 123, "tokenCount": 123 } }
Extracts text from images using OCR. Costs 1 credit per request.
API key authentication
Successful OCR response
The response is of type object.
object