# The Artillerist Company Dossier

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

Builds a comprehensive, citation-linked company dossier by aggregating GLEIF legal-entity data, SEC EDGAR filings, RDAP domain records, and OFAC sanctions screening into a single structured report.

## Facts

- Endpoint: POST https://theartillerist.com/api/v1/intelligence/company-dossier
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-artillerist-company-dossier-1d88457a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kxCh21pNpALZwEMvRGB2A

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-dossier-1d88457a -d '<json body>'
```

Example prompt: Pull a full company dossier on Acme Corp — I need their GLEIF legal-entity record, any recent SEC EDGAR filings, RDAP domain data, and an OFAC sanctions screen, with source citations and confidence noted for any gaps.

## When to prefer this

Use this endpoint when you need a comprehensive, citation-backed company intelligence report that combines legal entity identity (GLEIF), public regulatory filings (SEC EDGAR), domain provenance (RDAP), and sanctions exposure (OFAC) in a single call. Prefer it over point-solution APIs when compliance, due diligence, or vendor risk workflows require auditable sourcing and explicit confidence scoring for every assertion.

## Known failure modes

- Company not found in GLEIF or SEC EDGAR — partial dossier returned with gaps flagged
- OFAC screening returns no match — reported as clean with confidence caveat
- Domain has no RDAP record — section omitted with explanation
- Ambiguous company name yields multiple candidates — dossier may cover wrong entity
- Rate limiting or upstream source unavailability — some sections incomplete with error noted

## How this service works

Build a structured company dossier from GLEIF legal-entity data, SEC EDGAR company and recent filing metadata, authoritative RDAP domain data, and exact normalized OFAC name screening. Every assertion is tied to a public source URL and retrieval time, with gaps and confidence called out.

## Output

A structured company dossier containing: GLEIF legal entity records, SEC EDGAR company profile and recent filing metadata, RDAP domain registration data, normalized OFAC sanctions screening results, and for each assertion a public source URL and retrieval timestamp. Data gaps and confidence levels are explicitly called out.

## 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-dossier-1d88457a/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)
