# TariffMonkee AI Content Extraction

> TariffMonkee AI Content Extraction is a paid API for AI agents from tariffmonkee.com, paid per call via x402, $0.016/call, status unknown (last checked 2026-09-15).

Extracts structured data from already-fetched text content using AI, without re-fetching any URL

## Facts

- Endpoint: POST https://tariffmonkee.com/paid/extract
- Price: $0.016/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tariffmonkee-ai-content-extraction-a9686a42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m0NQNXzHI1_aZsbl0hRfN

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 tariffmonkee-ai-content-extraction-a9686a42 -d '<json body>'
```

Example prompt: I already have the raw HTML from that product page — can you extract the product name, price, and availability as structured JSON from this text without fetching the URL again?

## When to prefer this

Use this endpoint when you already have the raw text or HTML content from a prior fetch or scrape and want to extract structured data from it without incurring the cost and latency of re-fetching the URL. It is cheaper and faster than /extract-url because no browser rendering or HTTP fetch is involved — pure AI extraction only. Prefer /extract-url instead if you only have a URL and haven't fetched the content yet.

## Known failure modes

- Malformed or missing body fields (type, method, bodyType, body) result in a 400/422 error
- Empty or very short input text may result in empty or low-confidence extraction output
- AI extraction may miss fields if the input text is poorly formatted or truncated
- Payment not settled via x402 protocol returns a 402 Payment Required error
- Overly complex or ambiguous extraction instructions may produce inconsistent results

## How this service works

Extract structured data from content you already have (e.g. from a prior /content call), using AI. No browser render involved -- pure AI extraction, cheaper and faster than fetching a URL fresh. Use this when you already have the text; use /extract-url if you only have a URL.

## Output

A structured JSON object containing the fields extracted by AI from the provided text body, parsed according to the content and any schema or instructions supplied in the request body.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tariffmonkee-ai-content-extraction-a9686a42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tariffmonkee.com](https://www.zero.xyz/host/tariffmonkee.com/llms.txt)
