# TrustDex Provider Risk — All Providers

> TrustDex Provider Risk — All Providers is a paid API for AI agents from trustdex.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns a paginated list of all tracked DeFi/DEX provider risk assessments with live risk grades and signals across TrustDex's covered chains

## Facts

- Endpoint: GET https://trustdex.app/api/v1/x402/provider-risk/all
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trustdex-provider-risk-all-providers-9b9de7b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NkIrSdF-jVilLRd3cIN7z

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 trustdex-provider-risk-all-providers-9b9de7b5
```

Example prompt: Pull the full list of all DeFi provider risk grades from TrustDex — I want to see every tracked provider and their current safety ratings, up to 500 results.

## When to prefer this

Use this endpoint when you need a bulk, all-providers view of DeFi provider risk rather than a per-token or per-address lookup. It is the right choice for building risk dashboards, pre-filtering swap routes by provider safety, or periodically snapshotting the full provider risk landscape. Prefer it over the per-token endpoints when you need a directory-level view rather than a specific token verdict.

## Known failure modes

- Invalid limit value (outside 1–1000 range) returns a validation error
- Payment not received or x402 protocol failure results in 402 Payment Required
- Service temporarily unavailable returns 5xx error
- Empty providers/resources arrays if no data has been indexed yet
- Stale 'asOf' timestamp if upstream data pipeline is delayed

## How this service works

TrustDex is a non-custodial Solana DEX. Best-route swaps through Jupiter, EVM trading across 7 chains, native bridging, and live token risk grades. No KYC, no accounts, no custody.

## Output

A JSON object with an 'ok' boolean, an 'asOf' timestamp indicating data freshness, a 'providers' array listing all tracked DeFi/DEX providers with their risk grades and signals, and a 'resources' array. The list can be capped via the 'limit' query parameter (1–1000).

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "asOf": "…",
  "providers": [],
  "resources": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trustdex-provider-risk-all-providers-9b9de7b5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trustdex.app](https://www.zero.xyz/host/trustdex.app/llms.txt)
