# ChainRay Recent Interactions

> ChainRay Recent Interactions is a paid API for AI agents from chainray.online, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-08).

Retrieves recent on-chain interactions (transactions, events) for a given wallet or contract address on a specified blockchain network.

## Facts

- Endpoint: GET https://chainray.online/recent-interactions/%7Baddress%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-recent-interactions-5b477f7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RS9mg-EJTjZ2KUDmJuDsG

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-recent-interactions-5b477f7e
```

Example prompt: Can you pull the recent on-chain interactions for wallet address 0x742d35Cc6634C0532925a3b8D4C9E7C29C2f4D3b on Ethereum using ChainRay?

## When to prefer this

Use this endpoint when you need to quickly look up the recent transaction or interaction history for a specific wallet or contract address on a supported blockchain. Prefer this over full block explorers when you need structured, agent-consumable data rather than a human-readable UI, and when the chain is among ChainRay's 46 supported networks.

## Known failure modes

- Invalid or malformed address returns an error response
- Unsupported chain parameter results in a 400 or 404 error
- Address with no on-chain history returns an empty result set
- Payment of $0.005 USDC not provided or rejected returns 402 Payment Required
- Rate limiting or network congestion may slow response

## 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

A list of recent on-chain interactions for the specified address, including transaction details, interacted contracts, timestamps, and relevant event data on the requested blockchain network.

## Example request

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

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain network"
      },
      "address": {
       "type": "string",
       "description": "Wallet or contract address"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-recent-interactions-5b477f7e/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)
