-
Schedule a 30-minute live product demo with expert Q&A
Sample cURL to submit a file directly :
curl -X PUT "https://api.talonic.ai/data-extractor/process" \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "file=@/path/to/your/file.pdf" \
-F "json_schema={\"$schema\":\"http://json-schema.org/draft-07/schema#\",\"type\":\"object\",...}" \
-F "description=Optional description of the file"
Sample cURL to submit a file URL :
curl -X PUT "https://api.talonic.ai/data-extractor/process" \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "file_url=https://example.com/path/to/file.pdf" \
-F "json_schema={\"$schema\":\"http://json-schema.org/draft-07/schema#\",\"type\":\"object\",...}" \
-F "description=Optional description of the file"