# TariffMonkee Research — Search + Fetch Bundle

> TariffMonkee Research — Search + Fetch Bundle is a paid API for AI agents from tariffmonkee.com, paid per call via x402, $0.031/call, status unknown (last checked 2026-09-15).

Executes a web search and fetches rendered page content for up to 10 deduplicated sources in a single call, returning a token-budgeted ~8,000-token bundle of results via Taiwan search lane.

## Facts

- Endpoint: GET https://tariffmonkee.com/paid/research
- Price: $0.031/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tariffmonkee-research-search-fetch-bundle-4c715e36
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yAXN_IjvN1YpJYBtXt_qR

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-research-search-fetch-bundle-4c715e36
```

Example prompt: Search the web for the latest US-China tariff updates and bring back the full rendered content from up to 10 sources as a single bundled result — I need the actual page text, not just snippets.

## When to prefer this

Choose this endpoint when you need both search results AND full rendered page content in a single call, avoiding the overhead of chaining a /search call with multiple /content fetches. Ideal when you want deduplicated, domain-diverse sources and can tolerate the Taiwan region search lane. Prefer over separate search+fetch pipelines when minimizing latency and API call count matters, and when JavaScript-rendered content is required.

## Known failure modes

- Fewer than 3 sources successfully fetched — endpoint returns an error rather than a partial bundle
- Search provider failover exhausted across all three providers — no results returned
- Rendered page fetch timeout for individual sources — those sources are dropped from the bundle
- Token budget exceeded — content is truncated to fit ~8,000 combined tokens
- Payment not settled — x402 payment failure blocks the request

## How this service works

query -> up to 10 deduped, rendered sources as one token-budgeted bundle (~8,000 tokens combined). Combines /search (three-provider failover, region=tw Taiwan lane) with /content's rendered-page fetching internally, so you get one call instead of assembling search-then-fetch yourself. Sources are deduped by domain. Requires at least 3 successfully fetched sources to succeed -- returns sources_requested and sources_returned so you can see how many of the candidate set actually came back.

## Output

A token-budgeted bundle (~8,000 tokens combined) of up to 10 deduplicated, rendered web pages as Markdown text, along with sources_requested and sources_returned counts. Requires at least 3 successfully fetched sources to succeed; sources are deduplicated by domain.

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tariffmonkee-research-search-fetch-bundle-4c715e36/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)
