1099 Parser API
Extract structured data from 1099s with a single POST request. Built for CPAs, bookkeepers, and tax preparers who want to automate, not click. JSON in, JSON out.
Quick start
cURL
curl -X POST https://1099parser.com/api/extract \ -H "Authorization: Bearer YOUR_API_KEY" \ -F "file=@1099.pdf"
Python
import requests
resp = requests.post(
"https://1099parser.com/api/extract",
headers={"Authorization": "Bearer YOUR_API_KEY"},
files={"file": open("1099.pdf", "rb")},
)
print(resp.json()["data"]) # structured 1099 fieldsNode.js
const form = new FormData();
form.append("file", new Blob([fs.readFileSync("1099.pdf")]), "1099.pdf");
const res = await fetch("https://1099parser.com/api/extract", {
method: "POST",
headers: { Authorization: "Bearer YOUR_API_KEY" },
body: form,
});
const { data } = await res.json(); // structured 1099 fieldsFields returned
- ✓Form type (NEC, MISC, INT, DIV…)
- ✓Payer name & TIN
- ✓Recipient name & TIN
- ✓Box amounts
- ✓Federal & state withholding
- ✓Tax year
Per-document pricing
No per-page billing. No enterprise minimums.
Confidence scores
Every field ships with a confidence value.
Batch & async
Submit many 1099s and poll for results.
FAQ
Is there a 1099 parsing API?
Yes. 1099 Parser exposes a REST endpoint — POST a 1099 file to /api/extract with your API key and receive structured JSON. No SDK required; it is a standard multipart upload.
How is the 1099 API priced?
By document, not per page. Free includes 3 1099s; paid plans run from $9/mo (20 docs) to $199/mo (1,000 docs) with full API access on every tier. No per-page surprises and no enterprise minimums.
What does the API return?
A JSON object with the extracted fields (Form type (NEC, MISC, INT, DIV…), Payer name & TIN, Recipient name & TIN, and more) plus a per-field confidence score. You can also request CSV/Excel exports.
How do I get an API key?
Sign up (free, no credit card), open your dashboard, and copy your key. You can start calling the API within a minute.
Can I process 1099s in batch?
Yes. Use the batch and async endpoints to submit many 1099s at once and poll for results — ideal for high-volume automation.