Parble

Get started with Parble

Transform the way you process documents and extract valuable data with advanced Intelligent Document Processing.

Quick start

We understand your time is valuable, and we stand by our promise of getting you "up and running in 5 minutes." Let's put it to the test! Follow this concise guide for a swift and seamless integration into your workflow.

  • Install the Parble library

    Execute the following command in your terminal to install the Parble library in your preferred programming language. If you plan using a cURL command, feel free to skip this step.

    pip install parble
  • Upload a File in 2 simple steps

    • Open the shell for your desired programming language (Python or Node.js)
    • Copy and paste the code snippet into your terminal
    from parble import ParbleSDK
    parble = ParbleSDK(url="https://api.parble.com/v1/YOUR_TENANT_ID", api_key="YOUR_API_KEY")
    file = parble.files.post("PATH_TO_YOUR_FILE", inbox_id="INBOX_ID")
    print(file)
  • Monitor Usage and Automation Stats

    Easily view your updated usage and automation statistics by refreshing your dashboard screen. For more details about the uploaded file, here are some sample commands to access extra information.

    print('ID of the processed file for later retrieval: ', file.id)
    print('Number of pages found in the file: ', file.number_of_pages)
    print('Number of documents found in the file: ', len(file.documents))
    print('Classification of the first document found in the file: ', file.documents[0].classification.document_type)

To explore the full capabilities of Parble, dive into our API documentation and GitHub repository.