Inkspan › PDF to JSON API

PDF to JSON API

Convert tables inside PDFs into structured JSON rows. Detection falls back to coordinate-based reconstruction when needed, and every response carries a confidence score.

Example

import requests
r = requests.post('https://api.inkspan.dev/v1/extract/tables',
    headers={'X-API-Key': 'ink_live_...'},
    files={'file': open('input.pdf','rb')})
print(r.json())

Why an API instead of building it

Get a free API key →