# Agent Trust Contract Safety Audit

> Agent Trust 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).

Audits a Base blockchain token/contract address for security risks including honeypot patterns, buy/sell taxes, ownership status, mintability, proxy upgrade risk, and liquidity lock status

## Facts

- Endpoint: GET https://agent-trust-api-production.up.railway.app/api/contract-audit/:address
- 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-contract-safety-audit-b41dfd6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vuTjzUH7ksXWgbKzsMQRL

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-contract-safety-audit-b41dfd6f
```

Example prompt: Can you run a full safety audit on this Base token contract 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed — I want to know 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

Choose this endpoint when you need a comprehensive on-chain security audit of a specific Base token or contract before trading, investing, or integrating it — especially when you need honeypot detection, tax analysis, and liquidity lock status in a single call. Prefer this over general blockchain explorers when you need pre-parsed risk signals rather than raw contract data.

## Known failure modes

- Invalid or non-existent contract address returns error
- Contract not deployed on Base network returns not found
- GoPlusLabs or Blockscout upstream unavailability causes timeout or partial data
- Rate limiting or payment failure (x402) blocks the request
- Unverified contracts may return 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 structured safety report for the given contract address including: honeypot detection result, buy and sell tax percentages, whether contract ownership is renounced, hidden owner detection, mintability flag, proxy/upgrade risk indicator, liquidity lock status, and LP concentration metrics — all sourced from GoPlusLabs and Blockscout.

## 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
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-trust-contract-safety-audit-b41dfd6f/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)
