action cloudmersive_image_ocr_post { label: "Convert a scanned image into text" description: "Converts an uploaded image in common formats such as JPEG, PNG into text via Optical Character Recognition. This API is intended to be run on scanned documents. If you want to OCR photos (e.g. taken with a smart phone camera), be sure to use the photo/toText API instead, as it is designed to unskew the image first. Note: for free tier API keys, it is required to add a credit card to your account for security reasons, to use the free tier key with this API." provider: cloudmersive method: POST path: "/ocr/image/toText" encoding: json input: { type: "object" properties: { language: { type: "string" } preprocessing: { type: "string" } recognitionMode: { type: "string" } } additionalProperties: false } output: { type: "object" description: "Response from an OCR to text operation. Includes the confience rating and converted text result." properties: { MeanConfidenceLevel: { type: "number" format: "float" description: "Confidence level rating of the OCR operation; ratings above 80% are strong." } TextResult: { type: "string" description: "Converted text string from the image input." } } } }