# LegalPulse Employment Law API

> LegalPulse Employment Law API is a paid API for AI agents from legalpulse-rho.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Provides AI-driven employment law guidance covering wrongful termination, wage theft, discrimination, non-compete enforceability, and FMLA/ADA rights

## Facts

- Endpoint: GET https://legalpulse-rho.vercel.app/api/legal/employment
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/legalpulse-employment-law-api-29577ca4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XWhMD4c_MlV19Z5GiIx7D

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 legalpulse-employment-law-api-29577ca4
```

Example prompt: I was laid off last week and I think it might be retaliation for filing an HR complaint about discrimination — can you look up my wrongful termination rights and what steps I should take to file a claim?

## When to prefer this

Choose this endpoint when a user needs employment law information — particularly around wrongful termination, wage theft, workplace discrimination, non-compete clauses, or FMLA/ADA rights — as part of an automated legal research or rights-advisory workflow. Prefer over generic LLM responses when you need structured, research-backed legal guidance with statutory references.

## Known failure modes

- Missing or unsupported query topic returns incomplete guidance
- State-specific questions may lack coverage if jurisdiction is not recognized
- Payment not included or invalid returns 402 error and no content
- Highly fact-specific edge cases may receive general rather than tailored guidance
- Network timeout results in no response

## How this service works

Employment law guidance and wrongful termination check: covers wage theft, workplace discrimination, harassment, retaliation, non-compete enforceability, and FMLA/ADA rights, with filing deadlines, agency, claim strength, and next steps. For employee and legal agents.

## Output

A structured legal guidance response covering relevant employment law principles, applicable federal and state statutes, worker rights, enforcement options, filing procedures, and key deadlines relevant to the queried situation (e.g., wrongful termination, wage theft, FMLA/ADA rights, or non-compete enforceability)

## 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",
     "properties": {
      "issue": {
       "type": "string",
       "description": "wrongful-termination | discrimination | harassment | wage-theft | FMLA | non-compete | retaliation"
      },
      "state": {
       "type": "string",
       "description": "CA | TX | NY | FL | IL | PA | OH"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "issue": "wrongful-termination",
  "first_step": "File EEOC charge — required before federal lawsuit",
  "filing_agency": "EEOC",
  "claim_strength": "moderate",
  "potential_damages": [
   "Back pay",
   "Front pay",
   "Emotional distress"
  ],
  "statute_of_limitations_days": 300
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/legalpulse-employment-law-api-29577ca4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from legalpulse-rho.vercel.app](https://www.zero.xyz/host/legalpulse-rho.vercel.app/llms.txt)
