# Strale Token Project Due Diligence

> Strale Token Project Due Diligence is a paid API for AI agents from api.strale.io, paid per call via x402, $0.6696/call, status unknown (last checked 2026-09-15).

Performs due diligence and sanctions screening on a crypto token project, given its website domain and entity name

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/token-project-dd
- Price: $0.6696/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-token-project-due-diligence-625aa460
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_djlJqs1D4ZMwBihuULp9u

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 strale-token-project-due-diligence-625aa460 -d '<json body>'
```

Example prompt: Can you run a sanctions screening and due diligence check on the token project at uniswap.org — the company is called Uniswap Labs?

## When to prefer this

Choose this endpoint when you need structured, auditable sanctions screening and due diligence on a crypto token project, especially when compliance records with cryptographic audit trails are required. Prefer this over generic OFAC lookups when the subject is a Web3/DeFi entity and you need domain-specific intelligence tied to a project website.

## Known failure modes

- Unknown or unrecognized domain — project may be too new or obscure for data coverage
- Invalid domain format — must be a proper website domain like uniswap.org
- Entity name mismatch with domain — may produce incomplete results
- Payment failure via x402 micropayment protocol
- Rate limiting or service unavailability
- Project data not available in all 27 supported countries

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns a due diligence report for the specified token project, including sanctions screening results against relevant watchlists, compliance risk indicators, and an audit record with cryptographic chain hashing for verifiability.

## 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",
      "PUT",
      "PATCH"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "required": [
      "domain",
      "entity_name"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Token project website domain (e.g. uniswap.org)"
      },
      "entity_name": {
       "type": "string",
       "description": "Project or company name for sanctions screening"
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-token-project-due-diligence-625aa460/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
