# AgentToll OSINT Research Pack

> AgentToll OSINT Research Pack is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Runs a bundled OSINT research pack that aggregates open-source intelligence data about a subject and returns verified rows with a verification report.

## Facts

- Endpoint: POST https://agenttoll.dev/paid/osint/research-pack
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-osint-research-pack-3d92aa51
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2aU5LZBlObvZ1i4UZxApE

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 agenttoll-osint-research-pack-3d92aa51 -d '<json body>'
```

Example prompt: Run the OSINT research pack on the entity 'Horizon Dynamics LLC' — I want to pull all publicly available intelligence and get back a verified report on what you find.

## When to prefer this

Choose this endpoint when you need a bundled, pay-per-call OSINT research sweep on a named entity and want both raw data rows and a structured verification report in a single call. It is especially useful for agents that need to stay lean — paying $0.05 USDC only when research is actually needed rather than maintaining a subscription. Prefer it over general web search when you want OSINT-specific aggregation with a verification layer rather than raw unverified search results.

## Known failure modes

- No data found for the given subject — rows array returns empty
- Payment not processed — x402 USDC payment on Base must succeed before data is returned
- Ambiguous subject query yields low-quality or irrelevant rows
- Verification report may be sparse if few corroborating public sources exist
- Rate limiting or service unavailability returns a non-200 error

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns a JSON object containing an array of OSINT data rows (up to 20 per call), a total_fetched count, and a verification_report object summarizing the reliability and consistency of the gathered intelligence.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "topic": {
       "type": "string",
       "minLength": 3,
       "maxLength": 200
      },
      "domains": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "include_sources": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "hours_back": {
       "type": "integer",
       "minimum": 1,
       "maximum": 720
      }
     },
     "required": [
      "topic"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rows": [],
  "total_fetched": 20,
  "verification_report": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-osint-research-pack-3d92aa51/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
