# LegalPulse Contract Review & Clause Analysis

> LegalPulse Contract Review & Clause Analysis 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-13).

Analyzes contracts (NDA, lease, employment, freelance, SaaS, partnership, purchase) to explain each clause, flag red flags, identify negotiation points, and surface missing protections.

## Facts

- Endpoint: GET https://legalpulse.theaslangroupllc.com/api/legal/contract
- 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-contract-review-clause-analysis-f72e2805
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GnH2k7WWaTsAVf24i1Wb3

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-contract-review-clause-analysis-f72e2805
```

Example prompt: Can you review this NDA I'm about to sign — explain what each clause means, flag any red flags or one-sided terms, tell me what I should try to negotiate, and point out any protections that are missing?

## When to prefer this

Use this endpoint when an agent needs structured, clause-level legal analysis of a contract rather than a general legal question. Ideal for agents helping users review documents before signing, conducting due diligence, or preparing for contract negotiations. Covers a broad range of agreement types worldwide, making it suitable for both consumer and business contract review workflows.

## Known failure modes

- Empty or unreadable contract text submitted — returns error asking for valid contract content
- Unsupported agreement type — service may return generic analysis or an error
- Contract too long for single request — may require chunking or return truncated analysis
- Non-English contract submitted — analysis quality may degrade or return unsupported language error
- Payment failure (x402) — returns 402 with payment instructions before analysis is returned

## How this service works

Contract review and clause analysis: explains each clause, flags red flags, identifies what to negotiate, and surfaces missing protections in NDA, lease, employment, freelance, SaaS, partnership, and purchase agreements worldwide. For legal and contract-review agents.

## Output

Returns a structured analysis of the contract including plain-language explanations of each clause, flagged red flags and risky terms, specific clauses to negotiate, and a list of missing or standard protections that should be added.

## 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": {
      "clause": {
       "type": "string",
       "description": "non-compete | IP-assignment | indemnification | liability-cap | termination | arbitration"
      },
      "contract_type": {
       "type": "string",
       "description": "employment | freelance | NDA | lease | SaaS | partnership | purchase"
      }
     }
    }
   },
   "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": {
  "clause": "non-compete",
  "red_flags": [
   "No geographic limit",
   "Duration over 2 years",
   "Applies after any termination"
  ],
  "enforceability": "varies — unenforceable in CA; 1-2yr max in most states",
  "negotiation_tip": "Request narrower scope or Garden Leave payment"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/legalpulse-contract-review-clause-analysis-f72e2805/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)
