Documentation is currently under development. Some sections may be incomplete or subject to change.
cURL
curl --request POST \ --url https://nanostudio.cloud/api/ocr \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "image": "<string>", "language": "auto", "outputFormat": "text" } '
{ "success": true, "data": { "text": "<string>", "confidence": 123, "processingTime": 123 } }
Extract text from images with multi-language support
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Base64 encoded image data
Language code for text recognition
Output format for extracted text
text
json
csv
Text extracted successfully
Show child attributes
Extracted text content
Confidence score
Processing time in seconds