# AgentToll Regulatory Pulse — SEC & FDA Regulatory Event Monitor

> AgentToll Regulatory Pulse — SEC & FDA Regulatory Event Monitor is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Fetches recent regulatory events for a company or topic from SEC filings and OpenFDA, returning combined regulatory pulse data in a single call.

## Facts

- Endpoint: POST https://agenttoll.dev/paid/osint/regulatory-pulse
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-regulatory-pulse-sec-fda-regulatory-event-monitor-3e713b4a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Sd4YwjGhM9VRmkR_pTTYn

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-regulatory-pulse-sec-fda-regulatory-event-monitor-3e713b4a -d '<json body>'
```

Example prompt: Pull the latest SEC filings and FDA adverse event reports for Pfizer — I want a combined regulatory pulse showing any recent enforcement actions, safety signals, or notable filings.

## When to prefer this

Choose this endpoint when you need a combined, cross-agency regulatory snapshot (both SEC and FDA) in a single call for OSINT, due diligence, or risk monitoring — especially when you want to correlate financial regulatory filings with health/safety signals. Prefer over querying SEC EDGAR or OpenFDA separately when you want aggregated results quickly and cost-effectively at $0.03 per call via x402/USDC.

## Known failure modes

- No events found for obscure or misspelled company/drug names — returns total:0 with empty arrays
- Rate limiting or payment failure if USDC balance is insufficient for the $0.03 per-call fee
- SEC EDGAR or OpenFDA upstream API downtime may result in partial or empty results
- Ambiguous company names (e.g. common words) may return irrelevant regulatory events
- Very new companies or drugs with no filing history will return empty results

## 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 a total event count plus two arrays: sec_events (recent SEC regulatory filings or enforcement actions matching the query) and openfda_events (FDA adverse event or safety reports). Fields may be empty arrays if no events are found for the given input.

## 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": {
      "org": {
       "type": "string",
       "enum": [
        "all",
        "sec",
        "fda",
        "uspto",
        "fcc",
        "faa",
        "openfda"
       ]
      },
      "hours_back": {
       "type": "integer",
       "minimum": 1,
       "maximum": 720
      }
     }
    }
   },
   "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": {
  "total": 0,
  "sec_events": [],
  "openfda_events": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-regulatory-pulse-sec-fda-regulatory-event-monitor-3e713b4a/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)
