Overview
#DigiParser API
DigiParser provides a powerful document processing API that helps you extract structured data from various document formats.
Key features:
- Extract data from PDFs, images, scanned documents, and digital files
- Process documents via direct file upload or URLs
- Convert unstructured documents into structured JSON data
- Support for async processing for large documents
- Automated data extraction with high accuracy
- Flexible output formats with both key-value pairs and raw data
This API documentation provides all the endpoints and methods needed to integrate document processing capabilities into your applications.
Endpoint:
https://app.digiparser.com/api/v1
#Process documents via file upload
#query Parameters
async
booleanWhether to process the document asynchronously
#Request Body
file
stringoptionalThe file to process
#Responses
id
stringoptionalname
stringoptionalurl
stringoptionalisProcessed
booleanoptionalassignee
stringoptionaldata
object[]optionalExtracted entities in key-value pairs
rawData
object[]optionalExtracted entities in object format
#Process documents via URLs
#query Parameters
async
booleanWhether to process the document asynchronously
#Request Body
urls
stringoptionalURL of the document to process
#Responses
id
stringoptionalname
stringoptionalurl
stringoptionalisProcessed
booleanoptionalassignee
stringoptionaldata
object[]optionalExtracted entities in key-value pairs
rawData
object[]optionalExtracted entities in object format