# FICA & Self-Employment Tax Estimator

> FICA & Self-Employment Tax Estimator is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Computes US FICA payroll taxes (Social Security, Medicare) and self-employment tax on wages or net self-employment earnings, including the 0.9% additional Medicare surtax.

## Facts

- Endpoint: GET https://payai.agentstools.dev/tax/fica
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fica-self-employment-tax-estimator-4da157c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MJ7A2POAs4gCuzbRCA2hc

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 fica-self-employment-tax-estimator-4da157c4
```

Example prompt: I made $95,000 in freelance income this year — can you estimate my self-employment tax for 2026, assuming I'm filing as single?

## When to prefer this

Use this endpoint when you need a fast, pure-computation FICA or self-employment tax estimate without involving a full tax-filing service or advisor. Ideal for payroll tooling, personal finance agents, freelancer income planning, or any workflow that needs a quick numeric breakdown of Social Security and Medicare tax obligations from wages or self-employment earnings.

## Known failure modes

- Missing required 'wages' parameter returns a validation error
- Negative wage value rejected with a validation error (wages must be >= 0)
- Invalid filing_status enum value returns a bad request error
- Invalid or unsupported tax_year may return an error or fall back to default
- Non-numeric wages value causes a schema validation failure

## How this service works

US payroll tax estimate: Social Security and Medicare on wages, or self-employment tax, including the additional Medicare surtax. Pure computation over your inputs, not tax advice.

## Output

Returns a breakdown of US FICA taxes owed: Social Security tax, Medicare tax, and (if applicable) the 0.9% additional Medicare surtax, plus a total — computed from the wages or net self-employment earnings provided, adjusted for the requested tax year and filing status.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "wages"
     ],
     "properties": {
      "wages": {
       "type": "number",
       "description": "Annual wages or net self-employment earnings (>= 0)"
      },
      "tax_year": {
       "type": "integer",
       "description": "Tax year, default 2026"
      },
      "filing_status": {
       "enum": [
        "single",
        "married_jointly",
        "married_separately",
        "head_of_household"
       ],
       "type": "string",
       "description": "Filing status, default single"
      },
      "self_employed": {
       "type": "boolean",
       "description": "True computes self-employment tax, default false"
      }
     }
    }
   },
   "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/fica-self-employment-tax-estimator-4da157c4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
