# Stratalize Vendor Onboarding Dossier

> Stratalize Vendor Onboarding Dossier is a paid API for AI agents from www.stratalize.com, paid per call via x402, $3/call, status unknown (last checked 2026-09-14).

Returns a signed, composite compliance dossier for a vendor or counterparty, including OFAC/OIG LEIE/SAM exclusion screening, NPI provider verification, market rate intelligence, and contract intelligence — with a cryptographically verifiable receipt on every call.

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/vendor-onboarding-dossier
- Price: $3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stratalize-vendor-onboarding-dossier-ea06fb66
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1Vf6tCkmg5oRlceTcORS1

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 stratalize-vendor-onboarding-dossier-ea06fb66
```

Example prompt: Pull a full signed compliance dossier on Acme Medical Supplies LLC — they're an individual healthcare provider in Texas, NPI 1234567890, mid-size company in the medical devices industry — I need OFAC, OIG LEIE, and SAM screening plus NPI verification for examiner-facing diligence.

## When to prefer this

Choose this endpoint when you need a single, examiner-ready, cryptographically attested compliance dossier that fans out across multiple federal exclusion lists (OFAC, OIG LEIE, SAM) plus NPI verification and vendor intelligence in one call. Prefer it over calling individual screening APIs separately when you need a signed receipt for audit/examiner purposes, or when onboarding healthcare vendors where NPI verification alongside exclusion screening is required. Especially valuable when the result must be independently verifiable by a third party.

## Known failure modes

- Invalid NPI format (must be exactly 10 digits) — parameter validation error
- Entity name too short (minimum 2 characters) — validation error
- State code invalid (must be exactly 2 characters) — validation error
- Sub-source temporarily unavailable — affected section returns degraded/partial result rather than full failure
- Payment not completed via x402 — 402 Payment Required response
- Unknown entity type — enum validation error

## How this service works

Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Use when onboarding a vendor or counterparty and you need one signed composite dossier for examiner-facing diligence. Fans in OFAC, OIG LEIE, and SAM exclusion screening (each with list_version), NPI provider verification, vendor market rate, and contract intelligence — degrading per-section when a sub-source is unavailable rather th

## Output

A signed composite dossier with sections for OFAC exclusion screening (with list_version), OIG LEIE exclusion screening (with list_version), SAM exclusion screening (with list_version), NPI provider verification, vendor market rate, and contract intelligence. Each section degrades gracefully if a sub-source is unavailable. Every response includes a cryptographically signed, independently verifiable receipt at trust.stratalize.com/verify.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "npi": {
   "type": "string",
   "pattern": "^\\d{10}$",
   "description": "Request parameter: npi"
  },
  "state": {
   "type": "string",
   "maxLength": 2,
   "minLength": 2,
   "description": "Request parameter: state"
  },
  "industry": {
   "type": "string",
   "description": "Request parameter: industry"
  },
  "entity_name": {
   "type": "string",
   "minLength": 2,
   "description": "Request parameter: entity name"
  },
  "entity_type": {
   "enum": [
    "individual",
    "entity",
    "vessel",
    "aircraft"
   ],
   "type": "string",
   "description": "Request parameter: entity type"
  },
  "company_size": {
   "type": "string",
   "description": "Request parameter: company size"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stratalize-vendor-onboarding-dossier-ea06fb66/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.stratalize.com](https://www.zero.xyz/host/www.stratalize.com/llms.txt)
