# LegalPulse Employment Law Guidance

> LegalPulse Employment Law Guidance is a paid API for AI agents from legalpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Provides employment law guidance covering wrongful termination, wage theft, discrimination, harassment, retaliation, non-compete enforceability, and FMLA/ADA rights, with filing deadlines, agency referrals, claim strength assessment, and next steps.

## Facts

- Endpoint: GET https://legalpulse.theaslangroupllc.com/api/legal/employment
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/legalpulse-employment-law-guidance-6831e2ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5snMpQEiqnbcn65SkD3n6

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-guidance-6831e2ec
```

Example prompt: I was fired two weeks after I told HR about my manager's sexual harassment, and I'm pretty sure it's retaliation — can you check whether I have a valid wrongful termination or retaliation claim, how strong it is, which agency I should file with, and what my deadline is? I'm in California.

## When to prefer this

Choose this endpoint when a user needs employment-law-specific guidance — wrongful termination checks, wage theft claims, workplace harassment or discrimination analysis, FMLA/ADA accommodation questions, or non-compete enforceability assessments. It is purpose-built for employee-side employment law with structured outputs including claim strength, agency, and deadlines, making it superior to general legal Q&A tools for this domain.

## Known failure modes

- Insufficient situation details provided — returns a request for more specifics
- Jurisdiction not specified — may return generic federal guidance rather than state-specific advice
- Edge-case employment classification (contractor vs employee) may reduce claim strength confidence
- Highly fact-specific scenarios may return inconclusive claim strength with recommendation to consult an attorney
- API timeout if situation description is unusually complex

## 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

Returns a structured legal guidance response including: assessment of claim strength, identification of applicable laws (Title VII, FMLA, ADA, state equivalents, FLSA, etc.), relevant filing agency (EEOC, NLRB, state labor board), filing deadlines, and recommended next steps for the employee.

## 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-guidance-6831e2ec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from legalpulse.theaslangroupllc.com](https://www.zero.xyz/host/legalpulse.theaslangroupllc.com/llms.txt)
