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
URL of the image to process (must include protocol)
Successful OCR response
Show child attributes
Overall description of the image content
Extracted text
Starting position of the text
Ending position of the text
Number of credits consumed
Number of tokens processed