docimprint

← All docs

Quickstart

Aly Sawft · Founder & Engineer, Sawftware LLC ·

How do I make my first DocImprint API call?

Sign up at /get-started for a free dr_live_ API key, then POST /v1/extract with Authorization: Bearer and a document URL or file. The response includes bundle_id, manifest SHA-256, and mode-specific results with citations when enabled.

Quickstart

Get a free API key and make your first call in two lines. No wallet required.

bashFirst extract call
# Capture a document as a tamper-evident evidence bundle
curl -X POST "https://api.docimprint.com/v1/extract?sync=true" \
  -H "Authorization: Bearer dr_live_..." \
  -H "Content-Type: application/json" \
  -d '{"source":"https://bitcoin.org/bitcoin.pdf","mode":"summarize"}'
jsonResponse
{
  "success": true,
  "status": "complete",
  "store": true,
  "bundle_id": "ev_3f8a1c2d-7e4b-4a9f-b2c1-d5e6f7a8b9c0",
  "url": "https://bitcoin.org/bitcoin.pdf",
  "captured_at": "2026-06-11T14:00:00Z",
  "metadata": {
    "title": "Bitcoin: A Peer-to-Peer Electronic Cash System",
    "pages": 9,
    "word_count": 3722
  },
  "result": {
    "summary": "A purely peer-to-peer electronic cash system that allows online payments without a financial institution. Transactions are secured via proof-of-work and a distributed timestamp server.",
    "key_points": [
      "Double-spend problem solved without a trusted third party",
      "Proof-of-work chain is the tamper-evident transaction record",
      "Longest chain wins — nodes vote with CPU power"
    ]
  },
  "provenance": {
    "manifest_sha256": "a3f8c2d1e4b76f9c0d2e5a8b1c4f7e2d9a6b3c8f1e4d7a0b2c5f8e1d4a7b0c3",
    "signature": "0x9f4a2c8e1d7b3f6a0c5e2d9b4f7a1c8e3d6b9f2a5c0e7d4b1f8a3c6e9d2b5f8",
    "citation_verification": true
  }
}
API key — monthly credits, simplest setup. x402 — no account needed, pay per call in USDC. Compare auth options →

Related