📄DocParse Docs

👨‍🚀 Postman Integration

A pre-built Postman collection makes it easy to explore the DocParse API without writing any code. Import once and you'll have every endpoint ready to call with your API key.

Import the collection

  1. Open Postman → ImportLink.
  2. Paste:
plaintext
https://docs.docparse-labs.vercel.app/postman/docparse.json
  1. The collection appears in your workspace with environments for Production and Local Dev.

Configure your API key

Postman environments come with a DOCPARSE_API_KEY variable set as a secret (the value isn't synced to your team). Open the environment and paste your key.

Each request inherits an Authorization: Bearer {{DOCPARSE_API_KEY}} header automatically — you don't need to set it per request.

Included requests

  • Extractions — Create, List, Get, Delete
  • Batches — Add files, Get status, List, Delete
  • Files — Get result, Get raw URL, Delete
  • Classifications — Create, Add files, Get, List
  • API Keys — Read-only listing

Tips

  • The Add files request uses multipart/form-data. Click the request body, switch to form-data, and use the file picker on the files key — Postman handles boundaries for you.
  • The collection includes a Console log signature pre-request script for the webhook test endpoint, useful for debugging.

Generate code

Right-click any request → Generate Code Snippet to get a working example in cURL, Python, JavaScript fetch, Go, and 12+ other languages. The snippet inlines your environment variables.