INPUT
⬆ DROP FILE OR CLICK TO UPLOAD
txt, csv, pdf, docx, xlsx, html
AWAITING INPUT
AWAITING INPUT
AWAITING INPUT
CURL SNIPPET
▶ SHOW
# Stage 1 — ingest
curl -X POST https://api.yourdomain.com/ingest \
-H "X-API-Key: <your-key>" \
-H "Content-Type: text/plain" \
--data-binary @your-file.txt
# Stage 2 — resolve
curl -X POST https://api.yourdomain.com/resolve \
-H "X-API-Key: <your-key>" \
-H "Content-Type: application/json" \
-d '{"session_id": "<from-ingest>"}'
# Stage 3 — export
curl -X POST https://api.yourdomain.com/export \
-H "X-API-Key: <your-key>" \
-H "Content-Type: application/json" \
-d '{"session_id": "<from-ingest>", "format": "machine"}'
DEVELOPER CONSOLE