GET call for OCR API

Question: Sometimes a GET OCR API call returns
"Parsing Error: Unable to parse the image. Language not supported","ErrorDetails":"Unable to parse the image. Language not supported"} even so you use a fully supported language (here: “spa”)

Example: https://api.ocr.space/parse/imageurl?apikey=helloworld&url=http://ocr.space/Content/Images/ocrspacelogo2020b.png&language=spa&isOverlayRequired=true

Solution: Please make sure that the &url parameter is the last parameter in your call:

This works fine: https://api.ocr.space/parse/imageurl?apikey=helloworld&language=spa&isOverlayRequired=true&url=http://ocr.space/Content/Images/ocrspacelogo2020b.png