Catalog/chain-wallet-age

Chain

Wallet age & freshness signal API

Derive a wallet's first-transaction date, lifetime transaction count, and age in days from a keyless block explorer, then score a single freshness verdict (empty / fresh / new / established / veteran) an agent can branch on for risk. Turns a raw tx list into one risk-grade signal. Answers 'how old is this wallet', 'is this a brand-new wallet', 'first transaction date of this address', 'wallet freshness risk signal'.

Price$0.04per request
MethodPOST
Route/v1/chain/wallet-age
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
chainwalletagefreshnessfirst-txriskevmexplorer
API URLhttps://x402.hexl.dev/v1/chain/wallet-age
Integration docs
Example request
{
  "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
  "chain": "ethereum"
}
Example response
{
  "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
  "hasActivity": true,
  "firstSeen": "2015-09-28T08:24:43.000Z",
  "ageDays": 3901,
  "transactionCount": 78244,
  "freshness": "veteran",
  "interpretation": "Wallet first active 3901 day(s) ago with 78244 transaction(s) — veteran.",
  "chain": "ethereum"
}
Input schema
{
  "type": "object",
  "required": [
    "address"
  ],
  "properties": {
    "address": {
      "type": "string",
      "examples": [
        "0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
      ]
    },
    "chain": {
      "type": "string",
      "enum": [
        "ethereum",
        "base"
      ],
      "default": "ethereum"
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}