# Augur Risk - Base Contract Admission Control

> Augur Risk - Base Contract Admission Control is a paid API for AI agents from augurrisk.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Analyzes a Base smart contract address and returns a risk decision, policy recommendation, and supporting findings to gate agent transactions before execution.

## Facts

- Endpoint: GET https://augurrisk.com/analyze?address=0x4200000000000000000000000000000000000006
- 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/augur-f005c157
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_knEFVeI9BtENrbdTCr-12

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 augur-f005c157
```

Example prompt: Before my agent approves and routes funds through this Base contract at 0x1234...abcd, run an Augur risk analysis on it and tell me the decision and policy recommendation — flag any suspicious findings.

## When to prefer this

Use this endpoint as a pre-flight gate before any AI agent action involving a Base smart contract — buying tokens, routing funds, approving spending, or calling contract methods. Prefer this over generic security scanners when you specifically need a structured admit/deny decision with a policy recommendation optimized for autonomous agent workflows on Base, payable per-call via x402 USDC with no subscription required.

## Known failure modes

- Invalid or malformed contract address returns an error response
- Contract not deployed on Base network returns not-found or unsupported error
- Payment via x402 fails or is insufficient, returning a payment-required error
- Timeout if contract bytecode analysis takes too long
- Rate limiting if too many calls are made in quick succession

## How this service works

Deterministic Base contract admission control for agents on Base. Analyzes bytecode patterns (proxy detection, reentrancy, selfdestruct, honeypot, hidden mint, fee manipulation, delegatecall, deployer reputation) and returns a default decision, policy recommendation, supporting findings, and a composite 0-100 score. "safe" is not a guarantee or audit. Pay $0.10/call via x402 in USDC on Base.

## Output

Returns a default risk decision (allow/deny or similar verdict), a policy recommendation advising whether the agent should proceed, and supporting findings that detail the specific risk signals or indicators detected for the given contract.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "0x0000000000000000000000000000000000000001"
  }
 }
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "enum": [
        "base"
       ],
       "type": "string",
       "description": "Optional action-aware chain context. Only 'base' is currently supported."
      },
      "action": {
       "enum": [
        "approve"
       ],
       "type": "string",
       "description": "Optional action-aware policy context. V1 currently supports only 'approve'."
      },
      "address": {
       "type": "string",
       "pattern": "^0x[0-9a-fA-F]{40}$",
       "description": "Base mainnet contract address (0x-prefixed, 40 hex chars)"
      },
      "spender": {
       "type": "string",
       "pattern": "^0x[0-9a-fA-F]{40}$",
       "description": "Required when action='approve'. Spender address the agent plans to authorize."
      }
     }
    }
   },
   "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/augur-f005c157/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from augurrisk.com](https://www.zero.xyz/host/augurrisk.com/llms.txt)
