# AvisRadar Clawd Creator Audit

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

Audits a specific Clawd creator wallet address, returning all tokens they launched with market cap, age, alive/rugged status, buyer trader tiers, and aggregate volume.

## Facts

- Endpoint: GET https://avisradar-production.up.railway.app/api/agent/clawd/creator-audit/:address
- Price: $0.5/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-fe94e649
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ktm5dpQDWu1DeUAbk3Iuz

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-fe94e649
```

Example prompt: Run a Clawd creator audit on wallet 0x1234...abcd — I want to see all the tokens they've launched, whether any are rugged, the market caps, and what kind of traders have been buying, before I agree to pay them for a collab.

## When to prefer this

Use this endpoint when you need a comprehensive, pre-aggregated audit of a specific Clawd creator's token launch history — especially before partnering with, paying, or collaborating with that creator. It replaces manual cross-referencing of api.pumpclaw.com and onchain data with a single paid call.

## Known failure modes

- Invalid or unrecognized wallet address returns an error or empty result
- Creator has no Clawd launch history — returns empty token list
- Payment of $0.5 USDC not completed — 402 payment required response
- Network timeout on Railway-hosted service
- Address format incorrect (non-Base/EVM address)

## How this service works

PumpClaw creator-specific audit. Lists every token they launched via Clawd with mcap, age, alive/rugged status, trader tier of buyers, aggregate volume. One paid call replaces hand-crawling api.pumpclaw.com + onchain checks. Use before partnering with or paying a Clawd creator.

## Output

A structured report listing every token the creator launched via Clawd, including market cap, token age, alive or rugged status, trader tier breakdown of buyers, and aggregate trading volume — replacing manual hand-crawling of PumpClaw and onchain data.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "address": "0x1111111111111111111111111111111111111111"
  },
  "queryParams": {}
 }
}
```

## 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-fe94e649/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)
