US net-paycheck breakdown for any of 51 jurisdictions: 2026 federal brackets, FICA (SS wag
US net-paycheck breakdown for any of 51 jurisdictions: 2026 federal brackets, FICA (SS wage base $184,500, additional Medicare), and state income tax. Golden-vector verified.
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-31
updated
Provider
x402toll.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x1C9923489CD7D75Dd2f6735c48090b8bD4c7E5a9",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"filingStatus": "single",
"payFrequency": "biweekly",
"salary": 85000,
"state": "TX"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"additionalMedicare": 0,
"effectiveRatePct": 19.26,
"federalMarginalRatePct": 22,
"federalTax": 9870,
"ficaTotal": 6502.5,
"inputs": {
"filingStatus": "single",
"payFrequency": "biweekly",
"salary": 85000,
"state": "TX"
},
"medicare": 1232.5,
"netAnnual": 68627.5,
"netPerCheck": 2639.52,
"periodsPerYear": 26,
"socialSecurity": 5270,
"stateName": "Texas",
"stateTax": 0,
"stateTaxType": "No state income tax",
"totalTax": 16372.5
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"filingStatus": {
"default": "single",
"enum": [
"single",
"mfj"
],
"type": "string"
},
"payFrequency": {
"default": "biweekly",
"enum": [
"weekly",
"biweekly",
"semimonthly",
"monthly"
],
"type": "string"
},
"salary": {
"maximum": 10000000,
"minimum": 0,
"type": "number"
},
"state": {
"description": "2-letter US state/DC code",
"type": "string"
}
},
"required": [
"salary",
"state"
],
"type": "object"
},
"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": {
"additionalProperties": true,
"properties": {
"additionalMedicare": {
"type": "number"
},
"effectiveRatePct": {
"type": "number"
},
"federalMarginalRatePct": {
"type": "number"
},
"federalTax": {
"type": "number"
},
"ficaTotal": {
"type": "number"
},
"inputs": {
"type": "object"
},
"medicare": {
"type": "number"
},
"netAnnual": {
"type": "number"
},
"netPerCheck": {
"type": "number"
},
"periodsPerYear": {
"type": "number"
},
"socialSecurity": {
"type": "number"
},
"stateName": {
"type": "string"
},
"stateTax": {
"type": "number"
},
"stateTaxType": {
"type": "string"
},
"totalTax": {
"type": "number"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402toll.com/v1/paycheck" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402toll.com/v1/paycheck");
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://x402toll.com/v1/paycheck")
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/14200.json, and this resource appears in /discovery/resources and /discovery/search.