Skip to main content

Steps

1) Upload a PDF

curl -s -X POST   -H "X-Api-Key: $LEDGERIZE_API_KEY"   -F [email protected]   https://ledgerize.ai/api/v1/files

2) Convert to JSON

curl -s -X POST   -H "X-Api-Key: $LEDGERIZE_API_KEY"   -H "Content-Type: application/json"   -d '{"ids":["<uuid>"],"format":"JSON"}'   https://ledgerize.ai/api/v1/convert

3) Poll job & fetch result

curl -s -H "X-Api-Key: $LEDGERIZE_API_KEY" https://ledgerize.ai/api/v1/jobs/<jobId>
curl -s -H "X-Api-Key: $LEDGERIZE_API_KEY" https://ledgerize.ai/api/v1/jobs/<jobId>/result
Use format: CSV or XLS to download a file. See the Endpoints section for details.