# Arkham Intelligence Contract Lookup

> Arkham Intelligence Contract Lookup is a paid API for AI agents from api.arkm.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Returns detailed on-chain intelligence about a smart contract address, including deployer identity, proxy status, bytecode, and Arkham entity labels.

## Facts

- Endpoint: POST https://api.arkm.com/x402/intelligence/contract
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arkham-intelligence-contract-lookup-62459628
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__FShmYawdqvnhY0ZjIKqB

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 arkham-intelligence-contract-lookup-62459628 -d '<json body>'
```

Example prompt: Can you look up the Arkham intelligence profile for the contract at 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum — I want to know who deployed it, whether it's a proxy, and what entity is behind it?

## When to prefer this

Choose this endpoint when you need Arkham's proprietary entity-resolution intelligence on a specific smart contract — particularly when you want to identify the real-world organization behind a contract, check proxy relationships, or get deployment provenance. Prefer this over generic block explorers (Etherscan, etc.) when entity labeling and organizational attribution matter, not just raw on-chain data.

## Known failure modes

- Unknown or unindexed contract address returns empty or null entity fields
- Invalid address format causes a 400 bad request
- Contract not yet crawled by Arkham returns partial data with null labels
- Payment failure via x402 returns 402 Payment Required
- Non-contract (EOA) address may return unexpected results or an error
- Unsupported chain returns an error or empty response

## How this service works

Get Arkham contract intelligence. $0.20 per call.

## Output

A JSON object containing the contract's address, proxy status, bytecode (may be empty), deployment transaction hash and timestamp, the deployer's address with Arkham entity and label details (name, type, social links), the proxy implementation address if applicable, and any function signature hashes. Arkham entity data includes the organization name, type (e.g. stablecoin), website, Twitter, LinkedIn, and Crunchbase links.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "Blockchain network where the contract is deployed."
  },
  "address": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "number"
    },
    {
     "type": "boolean"
    },
    {
     "type": "array",
     "items": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       }
      ]
     }
    }
   ],
   "description": "The contract address to query."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
  "isProxy": true,
  "bytecode": "",
  "deployer": {
   "chain": "ethereum",
   "address": "0x95Ba4cF87D6723ad9C0Db21737D862bE80e93911",
   "contract": false,
   "arkhamLabel": {
    "name": "Deployer",
    "address": "0x95Ba4cF87D6723ad9C0Db21737D862bE80e93911",
    "chainType": "evm"
   },
   "arkhamEntity": {
    "id": "circle",
    "name": "Circle",
    "note": "",
    "type": "stablecoin",
    "service": null,
    "twitter": "https://twitter.com/circle",
    "website": "https://circle.com",
    "linkedin": "https://www.linkedin.com/company/circle-internet-financial",
    "crunchbase": "https://www.crunchbase.com/organization/circle-2"
   },
   "isUserAddress": false
  },
  "proxyAddress": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF",
  "blockTimestamp": "2018-08-03T19:28:24Z",
  "transactionHash": "0xe7e0fe390354509cd08c9a0168536938600ddc552b3f7cb96030ebef62e75895",
  "internalDeployer": {
   "chain": "ethereum",
   "address": "0x95Ba4cF87D6723ad9C0Db21737D862bE80e93911",
   "contract": false,
   "arkhamLabel": {
    "name": "Deployer",
    "address": "0x95Ba4cF87D6723ad9C0Db21737D862bE80e93911",
    "chainType": "evm"
   },
   "arkhamEntity": {
    "id": "circle",
    "name": "Circle",
    "note": "",
    "type": "stablecoin",
    "service": null,
    "twitter": "https://twitter.com/circle",
    "website": "https://circle.com",
    "linkedin": "https://www.linkedin.com/company/circle-internet-financial",
    "crunchbase": "https://www.crunchbase.com/organization/circle-2"
   },
   "isUserAddress": false
  },
  "functionSighashes": null
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arkham-intelligence-contract-lookup-62459628/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.arkm.com](https://www.zero.xyz/host/api.arkm.com/llms.txt)
