# Freelancer Contract Review

> Freelancer Contract Review is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Scans freelancer contracts for unfair IP clauses, flags high-risk terms, and returns redlined replacement wording with negotiation talking points

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/slate_heron/freelancer-contract-review
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freelancer-contract-review-e9cddeb5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UdZ3n0IwL8Moor87gWOMF

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 freelancer-contract-review-e9cddeb5 -d '<json body>'
```

Example prompt: Can you review this freelancer contract and flag any unfair IP clauses or high-risk terms? Here's the full contract text: [paste contract]. I want redlined replacement wording and the key points I should bring up in negotiation.

## When to prefer this

Choose this endpoint when a freelancer or independent contractor needs a quick, actionable review of a contract specifically focused on intellectual property and high-risk clauses, and wants concrete redlined replacement wording and negotiation lines — not just a general legal summary. It is ideal for agents handling legal document pre-screening without requiring a full legal service integration.

## Known failure modes

- Empty or missing prompt returns an error — contract text must be included in the prompt field
- Very short or ambiguous input may produce generic rather than clause-specific analysis
- Contract text in non-English languages may yield lower quality analysis
- Extremely long contracts may be truncated or produce incomplete results
- Payment failure via x402 will prevent the response from being returned

## How this service works

Freelancer Contract Review - Scans freelancer contracts for unfair intellectual property clauses, flags high-risk terms, and provides redlined replacement wording and short negotiation lines.. Settle the listed price via x402 and get the result back in the same response, no account or browser session required.

## Output

A structured text response identifying unfair or high-risk IP and contractual terms, providing redlined replacement wording for problematic clauses, and concise negotiation talking points the freelancer can use when discussing the contract with the hiring party.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/freelancer-contract-review-e9cddeb5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
