# AiToollab Security Address Lookup

> AiToollab Security Address Lookup is a paid API for AI agents from api.aitoollab.top, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Looks up risk score, transaction history, and security tags for a blockchain address

## Facts

- Endpoint: GET https://api.aitoollab.top/api/security/address/%7Baddress%7D
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aitoollab-security-address-lookup-553fb4a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KDWyXUVviv1pIafdMIf8Z

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 aitoollab-security-address-lookup-553fb4a2
```

Example prompt: Can you check the risk level and transaction history for blockchain address 0x742d35Cc6634C0532925a3b8D4C9C6D8e9b3e2f1 — I want to know if it's flagged as high risk and how many transactions it has made?

## When to prefer this

Use this endpoint when you need to quickly assess the risk profile and on-chain activity history of a specific blockchain address, particularly for fraud detection, compliance checks, or due diligence on counterparty wallets.

## Known failure modes

- Invalid or malformed address format returns an error
- Address not found in database may return empty or default values
- Network timeout if the upstream blockchain data source is unavailable
- Rate limiting if too many requests are made in a short period

## How this service works

AiToollab，普通人用AI做副业的实战平台。收录10+AI副业方向、50+提示词模板、真实赚钱案例。每周更新，找方向、找工具、找案例，一站搞定。

## Output

Returns a JSON object containing the queried address, a numeric risk score (0-100), a categorical risk level (e.g. LOW/MEDIUM/HIGH), the first and last transaction dates, total transaction count, and an array of security classification tags (e.g. 'normal_user').

## 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",
     "additionalProperties": {
      "type": "string"
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tags": [
   "normal_user"
  ],
  "address": "{address}",
  "last_tx": "2026-04-26",
  "first_tx": "2023-01-15",
  "tx_count": 150,
  "risk_level": "LOW",
  "risk_score": 35
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aitoollab-security-address-lookup-553fb4a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aitoollab.top](https://www.zero.xyz/host/api.aitoollab.top/llms.txt)
