# ChainRay Flash Loan Monitor

> ChainRay Flash Loan Monitor is a paid API for AI agents from chainray.online, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Monitors and returns real-time flash loan activity on a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/flashloan-monitor
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-flash-loan-monitor-d24b6bc4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9Ka-5bTXB05Ghu6BN4DkN

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 chainray-flash-loan-monitor-d24b6bc4
```

Example prompt: Can you pull up the latest flash loan activity on Ethereum right now? I want to see what's happening on-chain.

## When to prefer this

Use this endpoint when you need real-time or near-real-time flash loan event data for a specific blockchain network, particularly for DeFi security monitoring, exploit detection, or analytics dashboards. Prefer this over generic block explorers when you need structured, agent-consumable flash loan data across 46 chains with pay-per-request pricing.

## Known failure modes

- Unsupported chain parameter returns an error or empty result
- Missing chain parameter may default to a primary network or return a validation error
- Network congestion may delay real-time data
- Payment failure (x402) results in 402 response blocking data access
- Chain with no recent flash loan activity returns empty dataset

## How this service works

The most complete blockchain data and intelligence service for AI agents. 93 endpoints across 46 chains, from gas fees to DeFi analytics, with real-time streams, intent routing, and verifiable proofs. Pay-per-request via x402.

## Output

Returns a list of recent flash loan transactions on the specified blockchain, including details such as protocol used, loan amount, token, borrower address, block number, and timestamp.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "chain": "ethereum"
  }
 }
}
```

## 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": {
      "chain": {
       "type": "string",
       "description": "Blockchain network (e.g., base, ethereum, polygon)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-flash-loan-monitor-d24b6bc4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chainray.online](https://www.zero.xyz/host/chainray.online/llms.txt)
