SchemaLock — extract structured JSON data from a resume PDF or image (contact info, work e
SchemaLock — extract structured JSON data from a resume PDF or image (contact info, work experience, education, skills). Unlike generic OCR or text-only extraction APIs, this takes the raw file directly and validates email format and work-history date order, one automatic retry. Still fails after that, you aren't charged. No content stored after the response returns.
20000 (raw units)
price
3
calls / 30d
1
unique payers
2026-09-08
updated
Provider
doc-extract-api.thestarboy9696-4ef.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x65c767C483dd862d08Bc3d6500Cd4CD770Ae28ED",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"file": "<binary: PDF, PNG, or JPEG of a resume, max 15MB>"
},
"bodyType": "form-data",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"data": {
"candidate": {
"email": "[email protected]",
"location": "Austin, TX",
"name": "Jordan Rivera",
"phone": "512-555-0142"
},
"confidence": {
"fields": {
"candidate": 0.98,
"work_experience": 0.94
},
"overall": 0.95
},
"education": [
{
"degree": "B.S.",
"field": "Computer Science",
"graduation_date": "2018-05",
"institution": "University of Texas at Austin"
}
],
"skills": [
"TypeScript",
"Node.js",
"PostgreSQL"
],
"summary": "Backend engineer with 6 years building payment infrastructure.",
"work_experience": [
{
"company": "Acme Supply Co.",
"description": "Built and maintained payment processing systems.",
"end_date": null,
"start_date": "2022-03",
"title": "Senior Backend Engineer"
}
]
},
"retried": false,
"validation_warnings": []
},
"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"
],
"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://doc-extract-api.thestarboy9696-4ef.workers.dev/extract/resume" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://doc-extract-api.thestarboy9696-4ef.workers.dev/extract/resume");
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://doc-extract-api.thestarboy9696-4ef.workers.dev/extract/resume")
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/8239.json, and this resource appears in /discovery/resources and /discovery/search.