# Heurist Mesh: Solana USDC Daily Activity Aggregator

> Heurist Mesh: Solana USDC Daily Activity Aggregator is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Aggregates a Solana wallet's USDC transaction history by calendar day, returning daily counts and total volume sent/received to identify active periods and unusual spikes.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/BaseUSDCForensicsAgent/usdc_daily_activity
- 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/heurist-mesh-solana-usdc-daily-activity-aggregator-a37d8136
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HHdZ7tf3oOMMSgaa5S5uV

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 heurist-mesh-solana-usdc-daily-activity-aggregator-a37d8136 -d '<json body>'
```

Example prompt: Show me the day-by-day USDC activity for Solana wallet 7xKX...abc — I want to see daily transaction counts and total volume sent and received so I can spot any unusual spikes.

## When to prefer this

Choose this endpoint when you need a time-series view of USDC activity on Solana broken down by calendar day — particularly for forensic analysis, anomaly detection, or behavioral profiling of a specific wallet. Prefer it over raw transaction listing endpoints when you want pre-aggregated daily summaries rather than individual transaction records.

## Known failure modes

- Invalid or malformed Solana wallet address returns an error
- Wallet with no USDC transaction history returns empty data
- Network or RPC node unavailability causes timeout
- Date range with no activity returns zero-value rows
- Payment of 0.005 USDC not fulfilled causes 402 rejection

## How this service works

Aggregate a wallet's USDC activity by calendar day, returning daily transaction counts and total volume received/sent. Use to spot active vs quiet periods and unusual volume spikes.

## Output

Returns a list of calendar days, each with the number of USDC transactions, total USDC volume received, and total USDC volume sent for a given Solana wallet address — enabling identification of active vs quiet periods and volume anomalies.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "address": {
       "type": "string",
       "description": "Wallet address starting with 0x"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-mesh-solana-usdc-daily-activity-aggregator-a37d8136/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
