you need to use an OCR to extract the data
there are several very good AI/ OCRs now that do this really well
previously I would have used docparser or something similar but now you can find good OCRs on rapidAPI and appify and only pay per each record processed (which works out very cheap usually)
I’d set this up as an api connector as an action step
then I’d run it in the backend workflows (may take some time to complete so you don’t want it on front end). then in backend I’d schedule an api workflow with the results of the OCR (you’d need to initialize the api connector to get the data structure so you could map it into another API to then process it.
if it only returns 1 object and not an array you don’t even need another api and could just create/update a database item from the API response