# The Artillerist Company Snapshot

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

Resolves a company identity across GLEIF, SEC EDGAR, and RDAP domain records, returning normalized facts, recent filings, evidence timestamps, source gaps, and a confidence assessment.

## Facts

- Endpoint: POST https://theartillerist.com/api/v1/intelligence/company-snapshot
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-artillerist-company-snapshot-7f7a08d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2ZVUku1YX8zk9-6MJ8fMv

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-snapshot-7f7a08d8 -d '<json body>'
```

Example prompt: Pull a company snapshot for Acme Corporation — cross-reference their legal entity data from GLEIF, any SEC EDGAR filings, and their domain registration info, and give me the normalized facts along with a confidence assessment.

## When to prefer this

Choose this endpoint when you need a fast, multi-source authoritative snapshot of a company's legal identity that spans GLEIF, SEC EDGAR, and RDAP in a single call with explicit confidence scoring and source gap reporting. It is preferable to calling each registry API individually when you need normalized, deduplicated facts with provenance timestamps. Use it for vendor due diligence, compliance preflight, investor research, or counterparty verification where citation-backed confidence matters.

## Known failure modes

- Company not found in any of the three registries — returns empty results with source gaps noted
- Ambiguous company name matching multiple GLEIF or EDGAR records — low confidence score returned with candidates
- RDAP lookup fails for domain — source gap flagged in response
- Malformed or missing required input fields — validation error returned
- Rate limiting or upstream registry unavailability — transient error with retry guidance

## How this service works

Resolve a company identity across GLEIF legal-entity records, SEC EDGAR public-company filings, and authoritative RDAP domain registration. Returns normalized facts, recent filing links, evidence timestamps, source gaps, and an explicit confidence assessment.

## Output

Returns a structured object containing normalized company facts (legal name, identifiers, jurisdiction), links to recent SEC EDGAR filings, GLEIF legal entity record details, RDAP domain registration data, evidence timestamps for each source, an explicit list of source gaps where data was unavailable, and an overall confidence assessment score for the resolved identity.

## 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-snapshot-7f7a08d8/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)
