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

  • asyncboolean

    Whether to process the document asynchronously

#Request Body

  • filestringoptional

    The file to process

#Responses

    • idstringoptional
    • namestringoptional
    • urlstringoptional
    • isProcessedbooleanoptional
    • assigneestringoptional
    • dataobject[]optional

      Extracted entities in key-value pairs

    • rawDataobject[]optional

      Extracted entities in object format

#Process documents via URLs

#query Parameters

  • asyncboolean

    Whether to process the document asynchronously

#Request Body

  • urlsstringoptional

    URL of the document to process

#Responses

    • idstringoptional
    • namestringoptional
    • urlstringoptional
    • isProcessedbooleanoptional
    • assigneestringoptional
    • dataobject[]optional

      Extracted entities in key-value pairs

    • rawDataobject[]optional

      Extracted entities in object format