# AvisRadar Premium Base Wallet Audit

> AvisRadar Premium Base Wallet Audit is a paid API for AI agents from avisradar-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Performs a comprehensive paid audit of any Base wallet address, returning a trust score, 18+ identity proofs, token launch history, trader tier, and peer receipts in a single call.

## Facts

- Endpoint: GET https://avisradar-production.up.railway.app/api/agent/audit/:address
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/avisradar-production-up-railway-app-484089cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__tMfIBYZW8zKnWzbRxNJM

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 avisradar-production-up-railway-app-484089cb
```

Example prompt: Before I send this payment, can you run a full AvisRadar audit on Base wallet 0x1234...abcd — I want to see their trust score, all identity proofs like Farcaster and Basename, any tokens they've launched, and their trader tier?

## When to prefer this

Use this endpoint when you need a thorough onchain due diligence report on a Base wallet before making a significant payment or entering into an onchain agreement. It consolidates 18+ identity signals and token history into one paid call, making it far more efficient than querying multiple free endpoints separately. Prefer this over sibling free endpoints when completeness and speed matter.

## Known failure modes

- Invalid or malformed wallet address returns 400 error
- Payment not received or underpaid returns 402 Payment Required
- Wallet has no indexed data — returns score with empty proof arrays
- Network timeout if upstream Base node is slow
- Railway hosting downtime causes 503 Service Unavailable

## How this service works

Comprehensive premium audit of any Base wallet — score + all 18+ identity proofs (Virtuals/Farcaster/CB1/Basename/Clawd/Aerodrome/Morpho/etc.) + token launch history + trader tier + active-rater status + alive endpoint + ERC-8004 feedback + peer receipts. One paid call replaces 8 free ones. Use before paying any significant amount onchain.

## Output

Returns a comprehensive wallet report including: a 0-100 trust score, 18+ identity proofs (Virtuals, Farcaster, Coinbase One, Basename, Clawd, Aerodrome, Morpho, etc.), full token launch history with rug/alive status, trader tier classification, active-rater status, ERC-8004 feedback entries, and peer receipts — aggregating what would otherwise require 8+ separate free API calls.

## Example request

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/avisradar-production-up-railway-app-484089cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from avisradar-production.up.railway.app](https://www.zero.xyz/host/avisradar-production.up.railway.app/llms.txt)
