# AgentToll Geo-Pulse OSINT Signal Monitor

> AgentToll Geo-Pulse OSINT Signal Monitor is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Queries news and event databases (BBC, GDELT) to surface geo-specific OSINT signals and alert levels for a given location

## Facts

- Endpoint: POST https://agenttoll.dev/paid/osint/geo-pulse
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-geo-pulse-osint-signal-monitor-f2a44101
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KlroZfFz4KRpP7rXczAc-

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-geo-pulse-osint-signal-monitor-f2a44101 -d '<json body>'
```

Example prompt: Pull an OSINT geo-pulse for Nairobi, Kenya — I want to know the current alert level and any signals from BBC and GDELT about activity or incidents in that area right now.

## When to prefer this

Use this endpoint when you need a quick open-source intelligence snapshot for a specific geographic location, pulling from structured event databases (GDELT) and reputable news sources (BBC). Prefer it over raw news search when you want a normalized alert level and aggregated signal count rather than raw article text. Best for security awareness, pre-deployment location checks, or automated geopolitical monitoring workflows.

## Known failure modes

- Location not recognized or too ambiguous — returns empty signals array
- No recent events found for the location — signals array is empty but alert_level may still reflect baseline
- Rate limit or payment failure via x402 — call rejected before querying sources
- Upstream source (GDELT/BBC) temporarily unavailable — partial results with reduced sources_queried counts

## 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 signals detected for the queried location, an alert level (e.g. 'moderate', 'low', 'high'), and a breakdown of how many results were queried per source (e.g. BBC: 5, GDELT: 10).

## 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": {
      "region": {
       "type": "string",
       "enum": [
        "global",
        "middle_east",
        "ukraine",
        "taiwan",
        "asia_pacific"
       ]
      },
      "min_confidence": {
       "type": "number",
       "minimum": 0,
       "maximum": 1
      },
      "hours_back": {
       "type": "integer",
       "minimum": 1,
       "maximum": 72
      },
      "include_thermal": {
       "type": "boolean"
      }
     }
    }
   },
   "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": {
  "signals": [],
  "alert_level": "moderate",
  "sources_queried": {
   "bbc": 5,
   "gdelt": 10
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-geo-pulse-osint-signal-monitor-f2a44101/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)
