# HostDeFi Provider Risk — All Providers Feed

> HostDeFi Provider Risk — All Providers Feed is a paid API for AI agents from hostdefi.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns live token/provider risk grades for all DeFi providers tracked by HostDeFi's Solana and EVM DEX platform

## Facts

- Endpoint: GET https://hostdefi.com/api/v1/x402/provider-risk/all
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hostdefi-provider-risk-all-providers-feed-a649bf88
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eSpph15cccPLzMWF3jX_I

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 hostdefi-provider-risk-all-providers-feed-a649bf88
```

Example prompt: Pull the full list of provider risk grades from HostDeFi right now — give me all providers and their current risk ratings, up to 500 results.

## When to prefer this

Choose this endpoint when you need a bulk snapshot of risk grades across all DeFi providers at once — ideal for due diligence pipelines, risk dashboards, or pre-trade safety checks. Use the limit parameter to cap response size. Prefer this over per-token or per-provider endpoints when you need a holistic view of the provider landscape rather than a single entity's risk score.

## Known failure modes

- limit parameter out of range (must be 1–1000) returns validation error
- payment of 0.1 USDC not fulfilled returns 402 Payment Required
- no providers currently tracked returns empty providers and resources arrays
- upstream data staleness may result in outdated asOf timestamp
- network timeout if HostDeFi backend is unavailable

## How this service works

HostDeFi 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 ok status, an asOf timestamp indicating when the data was captured, a providers array containing risk-graded provider entries, and a resources array — optionally capped by the limit parameter.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 1000,
       "minimum": 1,
       "description": "Cap the resources array"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## 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/hostdefi-provider-risk-all-providers-feed-a649bf88/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hostdefi.com](https://www.zero.xyz/host/hostdefi.com/llms.txt)
