curl -X POST "https://maas-api.hivoice.cn/v1/ocr/image/extract" \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "model=u1-ocr-extract" \
-F "scene=general" \
-F "prompt=Your task is to extract information from the image above and structure it into JSON.
Strictly follow this schema for extraction (if a field does not exist, return an empty string): {\"invoiceNumber\":\"\",\"issueDate\":\"\",\"items\":[{\"itemName\":\"\",\"unitPrice\":\"\",\"quantity\":\"\",\"totalAmount\":\"\"}]}
Please output JSON only. All values must be strings. Do not provide any explanation." \
-F "image=@/path/to/image.png"