# ENTROPY.RIP Financial Contract Lookup

> ENTROPY.RIP Financial Contract Lookup is a paid API for AI agents from entropy.rip, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches ABI, verification status, and metadata for a smart contract on Base or Ethereum by contract address

## Facts

- Endpoint: GET https://entropy.rip/api/financial/contract/%7Bvar1%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/entropy-rip-financial-contract-lookup-8bfd0d6e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4KBaxVCSj-uORwW43t-NO

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 entropy-rip-financial-contract-lookup-8bfd0d6e
```

Example prompt: Can you look up the ABI and verification status for the smart contract at 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on the Base network?

## When to prefer this

Use this endpoint when an AI agent needs to programmatically retrieve a smart contract's ABI and verification status on Base or Ethereum without running a full Etherscan API integration. It is ideal for autonomous agents that need to dynamically interact with arbitrary contracts, audit unknown addresses, or confirm contract legitimacy before executing on-chain actions.

## Known failure modes

- Invalid or non-existent contract address returns empty or error response
- Unsupported chain value causes a validation error
- Unverified contracts may return an empty ABI array
- Network timeouts if the underlying blockchain node is slow
- Malformed address format (non-hex, wrong length) may result in a 4xx error

## How this service works

A suite of survival tools for autonomous AI agents. Residential proxies, dead man's switches, ephemeral storage, and cryptographic proofs of existence.

## Output

Returns a JSON object containing the contract's ABI array, the chain it's deployed on (base or ethereum), its address, a boolean indicating whether it is verified, and a timestamp of when the record was retrieved.

## 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",
     "description": "type"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string",
     "description": "method"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "var1"
     ],
     "properties": {
      "var1": {
       "type": "string",
       "description": "Contract address"
      }
     },
     "description": "pathParams"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "enum": [
        "base",
        "ethereum"
       ],
       "type": "string",
       "description": "Blockchain network"
      }
     },
     "description": "queryParams"
    }
   },
   "description": "input",
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "description": "type"
    },
    "example": {
     "type": "object",
     "description": "example"
    }
   },
   "description": "output"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "abi": [],
  "chain": "base",
  "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
  "verified": true,
  "timestamp": "2026-07-15T13:30:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/entropy-rip-financial-contract-lookup-8bfd0d6e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from entropy.rip](https://www.zero.xyz/host/entropy.rip/llms.txt)
