# DopamineDesk Token Audit API

> DopamineDesk Token Audit API is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Audits a token smart contract for security risks including honeypot detection, buy/sell taxes, mintability, proxy status, and an overall risk score.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/token_audit
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dopaminedesk-token-audit-api-cc23002d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yBQLIsrvZbIL89SiXRarD

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 dopaminedesk-token-audit-api-cc23002d
```

Example prompt: Can you audit the Ethereum token contract 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 and tell me if it's a honeypot, what the buy and sell taxes are, and what its overall risk score is?

## When to prefer this

Use this endpoint when you need a quick, automated security assessment of a token smart contract before trading or investing, especially to detect honeypots, abnormal taxes, or dangerous owner privileges like minting. It is ideal for DeFi agents performing pre-trade due diligence, portfolio risk screening, or vetting newly listed tokens on any supported EVM-compatible chain.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty result
- Unsupported blockchain network causes a validation error
- Contract not verified on-chain may return incomplete data
- Rate limiting or payment failure returns HTTP 402
- Newly deployed contracts may lack sufficient data for full analysis

## How this service works

Run a low-cost token security audit and honeypot check using current automated GoPlus risk fields for a supported EVM contract. These third-party signals are not a guarantee of safety.

## Output

Returns a JSON object with the contract address, a numeric risk score (0-100), a boolean honeypot flag, buy and sell tax percentages as strings, a mintable boolean indicating if the owner can mint new tokens, and a proxy boolean indicating if the contract is a proxy.

## 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": [
      "contract_address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain network (default: ethereum)."
      },
      "contract_address": {
       "type": "string",
       "description": "Token smart contract address."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "source",
      "source_url",
      "fetched_at",
      "chain",
      "chain_id",
      "contract_address",
      "caveat",
      "security",
      "marketplace_metadata"
     ],
     "properties": {
      "chain": {
       "type": "string"
      },
      "caveat": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "success": {
       "type": "boolean"
      },
      "chain_id": {
       "type": "string"
      },
      "security": {
       "type": "string"
      },
      "fetched_at": {
       "type": "string"
      },
      "source_url": {
       "type": "string"
      },
      "contract_address": {
       "type": "string"
      },
      "marketplace_metadata": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "ethereum",
  "caveat": "Automated third-party risk signals are not a guarantee of safety.",
  "source": "GoPlus Token Security API",
  "success": true,
  "chain_id": "1",
  "security": "[object with keys: anti_whale_modifiable, buy_tax, can_take_back_ownership, creator_address, creator_balance, creator_percent; full example in /openapi.json]",
  "fetched_at": "2026-08-07T07:32:30.442Z",
  "source_url": "https://docs.gopluslabs.io/reference/token-security-api",
  "contract_address": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
  "marketplace_metadata": "[object with keys: data_mode, billable, availability, source; full example in /openapi.json]"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dopaminedesk-token-audit-api-cc23002d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
