# Alchemy Wallet Intelligence Activity

> Alchemy Wallet Intelligence Activity is a paid API for AI agents from functions.miniup.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves on-chain activity and intelligence data for a blockchain wallet address using Alchemy's data infrastructure

## Facts

- Endpoint: GET https://functions.miniup.app/wallet-intel/activity
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alchemy-wallet-intelligence-activity-5816541e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7GIJJxvK6irhRbGuVIQlE

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 alchemy-wallet-intelligence-activity-5816541e
```

Example prompt: Can you pull the on-chain activity for the wallet 0xAbc123...def456 — I want to see what transactions and interactions it's been involved in recently?

## When to prefer this

Choose this endpoint when you need structured on-chain wallet activity data backed by Alchemy's node infrastructure, especially in agentic or x402-payment-enabled workflows where per-call micropayment billing is acceptable. Prefer this over raw RPC calls when you want pre-processed intelligence rather than raw blockchain data, and when integrating into automated pipelines that handle x402 payment headers natively.

## Known failure modes

- Missing or malformed wallet address in query params — endpoint may return an error or empty result
- Invalid blockchain address format — likely returns a 400-level error
- Rate limiting or quota exhaustion — may return 429 or payment-required response
- Wallet with no on-chain activity may return empty activity arrays
- Network or provider outage from Alchemy backend — may return 503 or timeout

## How this service works

Alchemy Wallet Intelligence: 

## Output

Returns on-chain activity data for the queried wallet address, including transaction history, interactions with contracts, token transfers, and other blockchain activity signals powered by Alchemy's data infrastructure. Response includes an 'ok' status boolean and associated activity payload.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alchemy-wallet-intelligence-activity-5816541e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from functions.miniup.app](https://www.zero.xyz/host/functions.miniup.app/llms.txt)
