# AgentToll Base Token Safety Check

> AgentToll Base Token Safety Check is a paid API for AI agents from agenttoll.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-19).

Performs a comprehensive safety analysis of a Base token by contract address, including honeypot detection, rug pull risk, tax simulation, contract verification, and deployer history

## Facts

- Endpoint: GET https://agenttoll.app/api/base/safety/:address
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-base-token-safety-check-b5224298
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CpEpa7Bb44RCQSnHi9mUu

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 agenttoll-base-token-safety-check-b5224298
```

Example prompt: Before I buy this token, can you run a full safety check on 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed on Base — I want to know if it's a honeypot, what the buy/sell taxes are, whether the liquidity can be pulled, and what the deployer's wallet history looks like?

## When to prefer this

Use this endpoint when you need a quick, multi-signal token safety assessment before executing a buy on Base. It is specifically designed for Base network tokens and bundles honeypot simulation, tax checks, contract verification, deployer profiling, and liquidity risk into a single call — making it ideal for trading bots, DeFi agents, and research workflows that need to gate trades on safety signals without calling multiple separate APIs.

## Known failure modes

- Invalid or malformed contract address returns a 400 error
- Address is a valid Ethereum address but not a token contract on Base (EOA or non-token contract) may return empty or error response
- Token so new it hasn't been indexed yet may return incomplete data
- Payment not received or insufficient USDC results in 402 Payment Required
- Rate limiting or upstream RPC unavailability may cause 503 responses

## How this service works

Token safety check for a Base token before you buy - is it a honeypot, is it a rug: a simulated buy and sell, buy and sell tax, contract verification, owner privileges, holder concentration, whether anyone can still pull the liquidity, and who deployed the contract - a token shipped from a wallet with a handful of transactions is the shape most rugs share

## Output

Returns a structured safety report including: honeypot detection result (simulated buy/sell success), buy and sell tax percentages, contract verification status, owner privilege flags, holder concentration metrics, liquidity withdrawal risk, and deployer wallet profile (transaction count and risk signals)

## 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",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "pattern": "^0x[0-9a-fA-F]{40}$"
      }
     }
    },
    "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/agenttoll-base-token-safety-check-b5224298/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.app](https://www.zero.xyz/host/agenttoll.app/llms.txt)
