DocumentLive

Document Extract Suite

Turn a PDF URL into structured data in one call: this pdf extraction suite pulls markdown text, tables, named entities, PII flags, and a summary without five separate requests.

$0.0805USDC per call · settled on Base · no subscription, no API key

Overview

Turn a PDF URL into structured data in one call: this pdf extraction suite pulls markdown text, tables, named entities, PII flags, and a summary without five separate requests. Composite: one call runs pdf-to-markdown first, then fans pdf-extract-tables, extract-entities, detect-pii, and summarize-text in parallel over the extracted text. Send { url: '<pdf-url>' } and get back { markdown, tables, entities, pii_flags, summary }. Built for document intelligence api workflows, pdf to structured data pipelines, and any document parse job feeding an LLM or a database. Only a hosted PDF URL is supported — there is no raw file-upload path. If entity/PII/summary legs fail, markdown and tables still return; the response is marked degraded rather than failed.

Endpoint

MethodEndpointPriceDescription
POST/v1/marketplace/api/document-extract-suite$0.0805Invoke Document Extract Suite (Document) and return the upstream response.

How to call it

Requests are paid per call over the x402 protocol. Call the endpoint, receive a 402 Payment Required quote, then repeat the request with the signed payment header. The SDKs do both steps for you.

# 1. Ask for a quote
curl -i -X POST https://api.jarvisclaw.ai/v1/marketplace/api/document-extract-suite \
  -H 'Content-Type: application/json' \
  -d '{}'

# 2. Pay it (the SDK signs and retries for you)
curl -X POST https://api.jarvisclaw.ai/v1/marketplace/api/document-extract-suite \
  -H 'Content-Type: application/json' \
  -H 'X-PAYMENT: <signed-payload>' \
  -d '{}'
Open in the marketplace

Docs: Getting started · x402 payments · x402 discovery · All APIs