# Contract IP Review

> Contract IP 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 a freelancer contract or clause to identify unfair intellectual-property provisions, explain legal risks, and suggest safer alternative wording.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/tidal_iris/contract-ip-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/contract-ip-review-bafdcf7f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DymnDwvXqbYeoPYq-ynmI

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 contract-ip-review-bafdcf7f -d '<json body>'
```

Example prompt: Can you review this freelancer contract clause and flag any unfair IP provisions? Here's the text: 'All work product, inventions, and ideas created by Contractor during or related to this engagement shall be the exclusive property of the Company, including any pre-existing tools or code.'

## When to prefer this

Choose this endpoint when an AI agent needs to quickly flag IP ownership risks in freelance or contractor agreements without requiring a user account or browser session. It is purpose-built for IP clause analysis rather than general legal document review, making it more targeted than a generic legal AI. Best suited for single-clause or short-contract review where a $0.02 per-call micropayment via x402 is acceptable.

## Known failure modes

- Empty or missing prompt field returns an error
- Submitting non-contract text (e.g. random prose) may produce generic or unhelpful output
- Very long contracts may be truncated or exceed context limits
- Payment failure via x402 prevents the response from being returned
- Ambiguous or poorly formatted clause text may yield imprecise analysis

## How this service works

Contract IP Review - Scan a freelancer contract or clause and highlight unfair intellectual-property provisions, explain legal risks, and suggest safer wording.

## Output

A structured text response identifying specific unfair or problematic IP provisions in the submitted contract text, an explanation of the associated legal risks for the freelancer, and suggested alternative wording that better protects the contractor's rights.

## 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/contract-ip-review-bafdcf7f/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)
