# Spraay Wallet Profile Analytics

> Spraay Wallet Profile Analytics is a paid API for AI agents from gateway.spraay.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns classification and profile analytics for a given blockchain wallet address

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/analytics/wallet
- 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/gateway-spraay-app-4a58f478
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Jh_CCF2Me7_-9NEG_lR2-

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 gateway-spraay-app-4a58f478
```

Example prompt: Can you pull up the wallet profile and classification for address 0x1234abcd... — I want to know what kind of wallet it is and see its analytics breakdown.

## When to prefer this

Use this endpoint when you need to classify or profile a specific wallet address and understand its type, behavior, or category. Prefer this over token balance endpoints when you need higher-level wallet characterization rather than raw asset data.

## Known failure modes

- Missing or invalid wallet address returns an error
- Unrecognized address format may return empty or null classification
- Rate limiting or payment failure (x402) if USDC payment not provided
- Wallet address with no on-chain history may return minimal or empty profile

## How this service works

Wallet profile.

## Output

Returns a wallet profile object including classification data that categorizes the wallet type and behavior based on on-chain activity for the given address.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "classification": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gateway-spraay-app-4a58f478/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.spraay.app](https://www.zero.xyz/host/gateway.spraay.app/llms.txt)
