Pay Stub Parser API
Extract structured data from pay stubs with a single POST request. Built for lenders, HR teams, and property managers verifying income who want to automate, not click. JSON in, JSON out.
Quick start
cURL
curl -X POST https://paystubparser.com/api/extract \ -H "Authorization: Bearer YOUR_API_KEY" \ -F "file=@paystub.pdf"
Python
import requests
resp = requests.post(
"https://paystubparser.com/api/extract",
headers={"Authorization": "Bearer YOUR_API_KEY"},
files={"file": open("paystub.pdf", "rb")},
)
print(resp.json()["data"]) # structured pay stub fieldsNode.js
const form = new FormData();
form.append("file", new Blob([fs.readFileSync("paystub.pdf")]), "paystub.pdf");
const res = await fetch("https://paystubparser.com/api/extract", {
method: "POST",
headers: { Authorization: "Bearer YOUR_API_KEY" },
body: form,
});
const { data } = await res.json(); // structured pay stub fieldsFields returned
- ✓Employee & employer name
- ✓Pay period dates
- ✓Gross pay
- ✓Net pay
- ✓Federal & state tax withheld
- ✓FICA (Social Security & Medicare)
- ✓YTD totals
Per-document pricing
No per-page billing. No enterprise minimums.
Confidence scores
Every field ships with a confidence value.
Batch & async
Submit many pay stubs and poll for results.
FAQ
Is there a pay stub parsing API?
Yes. PayStub Parser exposes a REST endpoint — POST a pay stub file to /api/extract with your API key and receive structured JSON. No SDK required; it is a standard multipart upload.
How is the pay stub API priced?
By document, not per page. Free includes 3 pay stubs; 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 (Employee & employer name, Pay period dates, Gross pay, 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 pay stubs in batch?
Yes. Use the batch and async endpoints to submit many pay stubs at once and poll for results — ideal for high-volume automation.