# EVM Smart Contract Fast Triage (contract-triage)

> EVM Smart Contract Fast Triage (contract-triage) is a paid API for AI agents from api.agentic-swarm-marketplace.com, paid per call via x402, $0.010000/call, status unknown (last checked 2026-09-15).

Performs a 30-second static analysis triage of a single EVM contract address, detecting honeypots, rug mechanics, drainer patterns, brand-name trust-borrowing, EIP-7702 delegate patterns, and Slither high-severity issues, returning a risk score and verdict.

## Facts

- Endpoint: GET https://api.agentic-swarm-marketplace.com/x402/v1/contract-triage
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-agentic-swarm-marketplace-com-4f9ca046
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kuBycQnvw2zfYmQN9PNEI

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 api-agentic-swarm-marketplace-com-4f9ca046
```

Example prompt: Can you quickly triage this Base chain contract 0x1111111254fb6c44bac0bed2854e76f90643097d for me — check if it's a honeypot, rug pull, or brand-impersonation scam and give me a risk score?

## When to prefer this

Choose this endpoint when you need a rapid (sub-60-second) triage verdict on a single EVM contract before deeper analysis or user interaction — especially useful for Base chain token screening, airdrop scam detection, and brand-impersonation checks. Prefer this over the full 5-phase audit when speed and cost ($0.01) matter more than exhaustive coverage, or as a pre-filter before invoking the full audit.

## Known failure modes

- Invalid or malformed contract address returns 400 error
- Contract address not found on specified chain returns empty or null analysis
- Unsupported chainId returns error or defaults to eip155:8453
- Payment failure (x402 protocol) returns 402 Payment Required
- Timeout if Slither analysis exceeds threshold — partial results may be returned
- Non-contract address (EOA wallet) may return low-confidence or incomplete results

## How this service works

Fast EVM smart-contract malicious-pattern triage. Returns risk score, verdict, top flags, and Phase-6 counterparty intel within ~30s for a single address.

## Output

Returns a JSON object with a numeric riskScore (0-100), a verdict of SAFE/SUSPICIOUS/MALICIOUS, a topFlags array listing detected threat categories (e.g. brand:reserve, honeypot, drainer), phase6Intel block containing bytecode length, contract creator address, EIP-7702 delegate address if present, SNOT name pattern boolean, known delegate match boolean, and deployer match against known SNOT operators, plus Slither high/medium severity finding counts and analysis completion time in milliseconds.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "chainId": "eip155:8453",
   "contractAddress": "0x1111111254fb6c44bac0bed2854e76f90643097d"
  }
 }
}
```

## 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": [
      "contractAddress"
     ],
     "properties": {
      "chainId": {
       "type": "string",
       "default": "eip155:8453"
      },
      "contractAddress": {
       "type": "string"
      }
     }
    }
   },
   "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/api-agentic-swarm-marketplace-com-4f9ca046/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentic-swarm-marketplace.com](https://www.zero.xyz/host/api.agentic-swarm-marketplace.com/llms.txt)
