const options = {
method: "POST",
headers: {
"x-api-key": "<your-api-key>",
"Content-Type": "application/json",
},
body: JSON.stringify({
jobId: "123e4567-e89b-12d3-a456-426614174000",
annotatedData: {
name: "John Doe",
amount: "1500",
},
extractId: "123e4567-e89b-12d3-a456-426614174002",
}),
};
fetch("https://api.getomni.ai/extract-annotations", options)
.then((response) => response.json())
.then((response) => console.log(response))
.catch((err) => console.error(err));