# Terms of Service Clause Extractor

> Terms of Service Clause Extractor is a paid API for AI agents from api.strale.io, paid per call via x402, $0.324/call, status unknown (last checked 2026-09-14).

Extracts key legal clauses (governing law, arbitration, termination, liability limitations) from a company's Terms of Service page given its website URL.

## Facts

- Endpoint: GET https://api.strale.io/x402/terms-of-service-extract
- Price: $0.324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-d076a90b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Mz0wFECm_5NYc6NhxYBlY

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 api-strale-io-d076a90b
```

Example prompt: Can you pull the key legal clauses from Stripe's terms of service at stripe.com — specifically what governing law applies, whether there's mandatory arbitration, how they handle termination, and what the liability limits are?

## When to prefer this

Use this endpoint when you need to quickly understand the legal posture of a company's Terms of Service without manually reading through lengthy legal documents. Ideal for compliance checks, vendor risk assessment, or competitive legal analysis where you need structured clause-level data rather than a full document summary.

## Known failure modes

- URL does not contain a Terms of Service page — returns error or empty extraction
- ToS page is behind a login or paywall — extraction fails
- Non-standard or heavily JavaScript-rendered ToS page may result in incomplete extraction
- Invalid or unreachable URL returns an error response

## How this service works

Extract key clauses from a company's Terms of Service: governing law, arbitration, termination, liability limitations. SQS: 84/100.

## Output

Returns structured data containing the extracted key clauses from the target company's Terms of Service page, including governing law jurisdiction, arbitration provisions, termination conditions, and liability limitation language.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Company website URL"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-d076a90b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
