# x402toll.com Relocation Paycheck Report

> x402toll.com Relocation Paycheck Report is a paid API for AI agents from x402toll.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Ranks all 51 US jurisdictions by net take-home pay for a given salary, filing status, and pay frequency, with per-state tax detail and best-to-worst annual spread.

## Facts

- Endpoint: POST https://x402toll.com/v1/reports/relocation-paycheck
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402toll-com-relocation-paycheck-report-32176e96
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WZ-cOUuo5BmM-Poi4w6_r

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 x402toll-com-relocation-paycheck-report-32176e96 -d '<json body>'
```

Example prompt: I make $120,000 a year, filing single, and I'm thinking about relocating — can you rank all 51 US jurisdictions by net take-home pay so I can see which state is best, using biweekly pay frequency?

## When to prefer this

Use this endpoint when a user wants a comprehensive, all-jurisdictions comparison of net take-home pay for relocation planning. It is ideal over single-state tax calculators when the user needs to rank or compare multiple states simultaneously, or wants to find the optimal state for salary retention. Prefer over generic tax APIs when the output needs to be a ranked, multi-state report with spread analysis rather than a single-state estimate.

## Known failure modes

- Missing required salary field returns validation error
- Invalid filing status value (not 'single' or 'mfj') returns enum error
- Invalid pay frequency value returns enum error
- Salary of zero or negative value may return error or degenerate results
- Payment failure (insufficient USDC) results in 402 rejection before computation

## How this service works

The same salary across all 51 US jurisdictions, ranked by net take-home — the relocation what-if in one call, with per-state tax detail and the best-to-worst annual spread.

## Output

A ranked list of all 51 US jurisdictions (50 states + DC) ordered from highest to lowest net take-home pay, including per-state tax detail (federal, state, FICA breakdowns), the per-period net paycheck amount, and the annual dollar spread between the best and worst jurisdiction for the given salary.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "salary": {
   "type": "number"
  },
  "filingStatus": {
   "enum": [
    "single",
    "mfj"
   ],
   "type": "string",
   "default": "single"
  },
  "payFrequency": {
   "enum": [
    "weekly",
    "biweekly",
    "semimonthly",
    "monthly"
   ],
   "type": "string",
   "default": "biweekly"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402toll-com-relocation-paycheck-report-32176e96/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402toll.com](https://www.zero.xyz/host/x402toll.com/llms.txt)
