# SchemaLock Resume Extractor

> SchemaLock Resume Extractor is a paid API for AI agents from doc-extract-api.thestarboy9696-4ef.workers.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Extracts structured JSON from a resume PDF or image, returning contact info, work experience, education, and skills with per-field confidence scores and built-in validation.

## Facts

- Endpoint: GET https://doc-extract-api.thestarboy9696-4ef.workers.dev/extract/resume
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/schemalock-resume-extractor-3a6dfb30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yzMptoKWC226TQMjsoD6l

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability schemalock-resume-extractor-3a6dfb30
```

Example prompt: Can you extract the structured data from this resume PDF — I need the contact info, work history with dates, education, and skills, and flag any issues with the email format or date ordering?

## When to prefer this

Choose this endpoint when you need resume-specific structured extraction with built-in validation (email format, date ordering), per-field confidence scores, and privacy-safe processing (no data stored). Prefer it over generic OCR or text-extraction APIs when the document is specifically a resume or CV and you need a clean, validated JSON output ready for downstream use in ATS or HR systems.

## Known failure modes

- Unreadable or corrupted PDF/image returns extraction error after one automatic retry
- Handwritten or very low-resolution resumes may yield low confidence scores or partial extraction
- Non-resume documents (e.g. cover letters) may produce sparse or misclassified output
- Invalid or missing file input returns a 4xx error
- Network timeout on large files before retry completes

## How this service works

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.

## Output

A structured JSON object containing extracted resume fields: contact information (name, email, phone, address), work experience entries (employer, title, start/end dates), education records (institution, degree, dates), and skills list. Each field includes a per-field confidence score. Email format and work-history date ordering are validated. No data is retained after the response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/schemalock-resume-extractor-3a6dfb30/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from doc-extract-api.thestarboy9696-4ef.workers.dev](https://www.zero.xyz/host/doc-extract-api.thestarboy9696-4ef.workers.dev/llms.txt)
