# Agent Trust API – Base Contract Safety Audit

> Agent Trust API – Base Contract Safety Audit is a paid API for AI agents from agent-trust-api-production.up.railway.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Performs a comprehensive safety audit on a Base network token contract, checking for honeypot patterns, buy/sell taxes, ownership renunciation, hidden owners, mintability, proxy/upgrade risk, and liquidity lock status.

## Facts

- Endpoint: GET https://agent-trust-api-production.up.railway.app/api/contract-audit/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-trust-api-base-contract-safety-audit-de6034d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HALXMAUg9bPVrvmvrSGgM

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 agent-trust-api-base-contract-safety-audit-de6034d4
```

Example prompt: Can you run a full safety audit on the Base token contract 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 — check if it's a honeypot, whether ownership is renounced, what the buy/sell taxes are, and if the liquidity is locked?

## When to prefer this

Use this endpoint when you need to assess the safety of a specific Base network token or smart contract before trading, investing, or interacting. It is the right choice when you need honeypot detection, tax analysis, ownership checks, and liquidity status in a single call specifically for Base chain contracts. Prefer this over generic blockchain explorers when you need structured, agent-readable safety signals.

## Known failure modes

- Invalid or malformed contract address returns an error
- Contract address not found on Base network returns empty/not-found result
- GoPlusLabs or Blockscout upstream service unavailable causes 502/503 error
- Rate limiting or payment failure (x402) if USDC payment is not processed
- Unverified or very new contracts may have incomplete audit data

## How this service works

Contract safety audit for any Base token/contract. Checks honeypot patterns, buy/sell taxes, ownership status (renounced?), hidden owner, mintability, proxy/upgrade risk, liquidity lock status, and LP concentration. Powered by GoPlusLabs + Blockscout.

## Output

Returns a detailed safety report including: honeypot detection result, buy/sell tax percentages, ownership renounced status, hidden owner flag, mintability flag, proxy/upgrade risk indicator, liquidity lock status, and LP concentration metrics for the queried Base contract.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "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"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "flags",
  "address",
  "details",
  "sources",
  "verdict",
  "contract",
  "auditedAt",
  "liquidity",
  "riskLevel",
  "riskScore"
 ],
 "properties": {
  "flags": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "flag",
     "detail",
     "severity"
    ],
    "properties": {
     "flag": {
      "type": "string"
     },
     "detail": {
      "type": "string"
     },
     "severity": {
      "type": "string"
     }
    }
   }
  },
  "address": {
   "type": "string"
  },
  "details": {
   "type": "object",
   "required": [
    "isProxy",
    "buyTaxPct",
    "isHoneypot",
    "isMintable",
    "sellTaxPct",
    "hiddenOwner",
    "hasBlacklist",
    "hasWhitelist",
    "isOpenSource",
    "selfDestruct",
    "isUpgradeable",
    "ownerRenounced",
    "canReclaimOwnership"
   ],
   "properties": {
    "isProxy": {
     "type": "boolean"
    },
    "buyTaxPct": {
     "type": "number"
    },
    "isHoneypot": {
     "type": "boolean"
    },
    "isMintable": {
     "type": "boolean"
    },
    "sellTaxPct": {
     "type": "number"
    },
    "hiddenOwner": {
     "type": "boolean"
    },
    "hasBlacklist": {
     "type": "boolean"
    },
    "hasWhitelist": {
     "type": "boolean"
    },
    "isOpenSource": {
     "type": "boolean"
    },
    "selfDestruct": {
     "type": "boolean"
    },
    "isUpgradeable": {
     "type": "boolean"
    },
    "ownerRenounced": {
     "type": "boolean"
    },
    "canReclaimOwnership": {
     "type": "boolean"
    }
   }
  },
  "sources": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "verdict": {
   "type": "string"
  },
  "contract": {
   "type": "object",
   "required": [
    "name",
    "symbol",
    "holderCount",
    "totalSupply",
    "blockscoutUrl",
    "creatorAddress",
    "creatorBalance"
   ],
   "properties": {
    "name": {
     "type": "string"
    },
    "symbol": {
     "type": "string"
    },
    "holderCount": {
     "type": "number"
    },
    "totalSupply": {
     "type": "string"
    },
    "blockscoutUrl": {
     "type": "string"
    },
    "creatorAddress": {
     "type": "string"
    },
    "creatorBalance": {
     "type": "number"
    }
   }
  },
  "auditedAt": {
   "type": "string"
  },
  "liquidity": {
   "type": "object",
   "required": [
    "dexes",
    "dexCount",
    "lpLocked",
    "totalUsd",
    "topHolderPct"
   ],
   "properties": {
    "dexes": {
     "type": "array",
     "items": {
   
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-trust-api-base-contract-safety-audit-de6034d4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-trust-api-production.up.railway.app](https://www.zero.xyz/host/agent-trust-api-production.up.railway.app/llms.txt)
