# DopamineDesk Crypto Risk Brief API

> DopamineDesk Crypto Risk Brief API is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Runs automated security checks on an EVM token contract address and returns a risk assessment with flags and conclusion

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/crypto_risk_brief
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dopaminedesk-crypto-risk-brief-api-52f105d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4eWInZCDEVci7Gxdc7qYq

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-crypto-risk-brief-api-52f105d1
```

Example prompt: Can you run a crypto risk check on the token contract 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on Base and tell me if there are any red flags or security issues?

## When to prefer this

Choose this endpoint when you need a fast, pay-per-call automated risk brief on any EVM token contract without setting up your own on-chain analysis infrastructure. It is ideal for AI agents performing pre-trade due diligence, portfolio screening, or alerting workflows on Base, Ethereum, or Arbitrum tokens. Prefer it over manual block explorer lookups when you need a structured, machine-readable risk conclusion with enumerated flags.

## Known failure modes

- Invalid or malformed contract address returns error response
- Unsupported chain name causes bad request
- Contract not deployed on specified chain may return no data or error
- Network timeout if blockchain RPC is slow
- Missing required contract_address parameter returns validation error

## How this service works

Run a crypto risk report and token security audit that combines current contract-risk signals, live on-chain metadata, deployed bytecode, upgradeable-proxy detection, gas, and optional liquidity evidence. An address with no bytecode is a critical finding, and proxy_detected: false does not prove immutability.

## Output

A JSON object containing: success boolean, chain identifier, contract address echoed back, a conclusion string (e.g. 'no_obvious_issue_detected'), an array of risk_flags (populated when issues are found), and integer counts of checks_requested and checks_completed.

## 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": "Supported network: base, ethereum, or arbitrum. Defaults to base."
      },
      "pool_address": {
       "type": "string",
       "description": "Optional DexScreener pair address to include live liquidity evidence."
      },
      "contract_address": {
       "type": "string",
       "description": "EVM token contract address."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "see"
     ],
     "properties": {
      "see": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "see": "https://ai-data-marketplace-1042299154756.us-central1.run.app/openapi.json"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dopaminedesk-crypto-risk-brief-api-52f105d1/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)
