Fill a PDF form using facts found in supporting documents
Fill a PDF form using facts found in supporting documents. Also: fill a PDF form from DOCX, spreadsheets, images, JSON, or other documents; pre-fill a government form from supporting paperwork; complete an application from a resume or company details; extract answers from context documents into a form. Price scales with page count; this 402 carries the exact amount for the PDF sent.
70000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-05
updated
Provider
api.getemboss.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x57a4ba72d5cf3f4fe01c65a23aa449522d063869",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bda02913",
"amount": "70000",
"maxTimeoutSeconds": 899
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"context": "supporting files, repeatable",
"context_text": "free text with the facts",
"context_urls": "public https links, repeatable",
"file": "the PDF form (required)"
},
"bodyType": "form-data",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"job_id": "<uuid>",
"quote_id": "<uuid>",
"status_url": "https://api.getemboss.ai/pay/jobs/<uuid>?token=<token>"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {}
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.getemboss.ai/pay/fill-with-context" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.getemboss.ai/pay/fill-with-context");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.getemboss.ai/pay/fill-with-context")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8281.json, and this resource appears in /discovery/resources and /discovery/search.