# 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-14).

Retrieves the most recent on-chain interactions (transactions) for a given wallet or contract address on a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/recent-interactions/:var1
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-recent-interactions-2ce35cc6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dCW526sHfEDYMbEen89bE

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-2ce35cc6
```

Example prompt: What are the most recent on-chain interactions for wallet address 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Ethereum?

## When to prefer this

Use this endpoint when you need a quick summary of what a specific wallet or contract address has been doing on-chain recently, particularly for transaction monitoring, due diligence, or behavioral analysis across 46+ supported chains. Prefer this over general block explorers when you need programmatic, agent-friendly access to recent interaction history in a structured format.

## Known failure modes

- Invalid or malformed wallet/contract address returns an error response
- Unsupported or unrecognized chain identifier returns an error
- Address with no transaction history returns empty result set
- Payment failure (insufficient USDC balance) results in 402 response
- Network or RPC node unavailability may cause timeout or 503 error

## How this service works

ChainRay /recent-interactions

## Output

A list of recent on-chain interactions (transactions) associated with the provided wallet or contract address on the specified blockchain, including transaction details such as counterparties, timestamps, contract calls, and asset transfers.

## 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-2ce35cc6/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)
