GET GET /processors/{processor_id}/runs/{run_id}
Returns the latest status and output links for a processor run.
cURL
curl https://api.algorythmos.fr/processors/invoice-extractor/runs/run_42mLQ \
-H "x-api-key: $ALG_KEY"JavaScript
const res = await fetch('https://api.algorythmos.fr/processors/invoice-extractor/runs/run_42mLQ', {
headers: { 'x-api-key': process.env.ALG_KEY }
})
const run = await res.json()Python
import requests, os
run = requests.get(
'https://api.algorythmos.fr/processors/invoice-extractor/runs/run_42mLQ',
headers={'x-api-key': os.environ['ALG_KEY']}
)
print(run.json())