# The Artillerist Company Change Monitor

> The Artillerist Company Change Monitor is a paid API for AI agents from theartillerist.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Monitors a company or vendor for changes in sanctions status, SEC filings, legal-entity records, and domain registration, returning a structured citation-first change summary with severity, timestamps, and confidence scores.

## Facts

- Endpoint: POST https://theartillerist.com/api/v1/intelligence/company-change-monitor
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-artillerist-company-change-monitor-ed7cda9e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PH3rgXjoZ2x2nXVY9DgFs

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 the-artillerist-company-change-monitor-ed7cda9e -d '<json body>'
```

Example prompt: Check Acme Logistics Inc. for any sanctions, SEC filing, legal-entity, or domain registration changes since January 1 2024, and give me a structured change summary with severity and source citations.

## When to prefer this

Choose this endpoint when you need to detect *changes* in a company's status over time rather than a one-time snapshot. It is ideal for continuous vendor due diligence workflows, periodic re-screening of existing counterparties, or comparing against a previously generated report. Prefer the Company Snapshot or Company Dossier endpoints for initial onboarding due diligence; use this endpoint for ongoing monitoring. It is particularly valuable when you need citation-backed evidence of what changed, when, and with what confidence, rather than a static company profile.

## Known failure modes

- Company not found in GLEIF, SEC EDGAR, or domain registries — partial or empty results returned with disclosed gaps
- Ambiguous company name resolving to multiple entities — may require disambiguation input
- Baseline date or prior report reference not recognized — comparison may default to a standard lookback window
- Upstream data sources temporarily unavailable — gaps disclosed in response
- Rate limiting or payment failure via x402 protocol — 402 or 429 response codes
- Insufficient identifying information to locate legal entity — low confidence score returned

## How this service works

Monitor a company or vendor for sanctions, SEC filing, legal-entity, and domain-registration changes. Compare current authoritative evidence with an earlier paid report or a supplied date and receive a structured, citation-first change summary with severity, timestamps, source URLs, confidence, and disclosed gaps. Designed for continuous vendor due diligence; it is not a legal or compliance determination.

## Output

A structured JSON change summary comparing current authoritative evidence against a prior baseline, including: detected changes categorized by type (sanctions, SEC, legal entity, domain), severity rating per change, timestamps, source URLs for each citation, confidence scores, and explicitly disclosed data gaps or limitations. The response is explicitly not a legal or compliance determination.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "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
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-artillerist-company-change-monitor-ed7cda9e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from theartillerist.com](https://www.zero.xyz/host/theartillerist.com/llms.txt)
