Docparser · Example Payload

Get Results By Document Response

Document ParsingData ExtractionPDFOCRDocument AutomationInvoicesContractsREST API

Get Results By Document Response is an example object payload from Docparser, with 19 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

idfile_nameremote_idmedia_linkpage_countuploaded_atprocessed_atinvoice_numberinvoice_datedue_datevendor_namevendor_addressbill_to_namebill_to_addressline_itemssubtotaltaxtotal_amountcurrency

Example Payload

Raw ↑
{
  "id": "doc_abc123",
  "file_name": "invoice-2026-001.pdf",
  "remote_id": "order-9001",
  "media_link": "https://app.docparser.com/stack/parser/doc/abc123xyz/doc_abc123",
  "page_count": 1,
  "uploaded_at": "2026-06-13T08:00:00Z",
  "processed_at": "2026-06-13T08:00:05Z",
  "invoice_number": "INV-2026-001",
  "invoice_date": "2026-06-13",
  "due_date": "2026-07-13",
  "vendor_name": "Acme Corporation",
  "vendor_address": "123 Main St, Springfield, IL 62701",
  "bill_to_name": "Widget Co.",
  "bill_to_address": "456 Oak Ave, Chicago, IL 60601",
  "line_items": [
    {
      "description": "Widget Type A",
      "quantity": "10",
      "unit_price": "100.00",
      "total": "1000.00"
    },
    {
      "description": "Widget Type B",
      "quantity": "5",
      "unit_price": "100.00",
      "total": "500.00"
    }
  ],
  "subtotal": "1500.00",
  "tax": "0.00",
  "total_amount": "1500.00",
  "currency": "USD"
}