Getting Started
Last updated
Last updated
Check out our for executable code examplesè
Before sending our request, we need to prepare a few steps:
We encoded the invoice PDF to base64 to pass it to our endpoint.
We decided on a that describes what we want to extract.
We created an here.
In the returned response, we can see the id of the created job. We can now see if the job is still running or already finished by querying the job endpoint with that id. To make things convenient, we already provide this URL in urls["get"]
.
We can easily query the jobs current state using another request:
In the status
field, we see that the job has finished, which means the result is also present in the result
field.