Inkspan › 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.
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())