# TariffMonkee Crawler Diligence Logs

> TariffMonkee Crawler Diligence Logs is a paid API for AI agents from tariffmonkee.com, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-13).

Retrieves crawler diligence and audit logs for a given domain or URL, documenting crawlability signals and bot-access history

## Facts

- Endpoint: POST https://tariffmonkee.com/paid/crawler-diligence-logs
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tariffmonkee-crawler-diligence-logs-e3de13a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_foHliuyOx-XGzEJcS9tKZ

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-crawler-diligence-logs-e3de13a3 -d '<json body>'
```

Example prompt: Pull the crawler diligence logs for example.com so I can see what bots have been accessing it and what the crawlability audit trail looks like.

## When to prefer this

Choose this endpoint when you need to audit crawler and bot access history for a specific domain or URL as part of due diligence, SEO investigation, or compliance review, and you want a pay-per-call approach with no API key setup. Best suited for one-off or agent-driven diligence checks rather than continuous monitoring.

## Known failure modes

- Invalid or malformed URL/domain input returns an error
- Domain has no crawler log history resulting in empty or null log data
- Network timeout if the target domain is unreachable during lookup
- Payment not settled via x402 results in HTTP 402 rejection before processing
- Malformed POST body or incorrect bodyType causes schema validation error

## How this service works

Small, single-purpose web data APIs that AI agents pay for per call in USDC over the x402 protocol (HTTP 402). No accounts, no API keys, no subscriptions.

## Output

Returns structured crawler diligence log data for the submitted domain or URL, including records of bot access events, crawlability signals, and audit trail information relevant to SEO and web compliance review.

## 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-crawler-diligence-logs-e3de13a3/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)
