# Arkham Intelligence Search via stablecrypto.dev

> Arkham Intelligence Search via stablecrypto.dev is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-15).

Search Arkham Intelligence's database for blockchain addresses, entities, tokens, liquidity pools, and named labels

## Facts

- Endpoint: POST https://stablecrypto.dev/api/arkham/search
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecrypto-dev-6bba7d3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sdYI7M9w8WNCyD3XGjdj3

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 stablecrypto-dev-6bba7d3c -d '<json body>'
```

Example prompt: Search Arkham for everything related to 'Jump Crypto' — I want to see addresses, entities, tokens, and pools associated with that name.

## When to prefer this

Use this endpoint when you need to identify, resolve, or discover blockchain entities, addresses, tokens, or pools using Arkham Intelligence's curated label database — especially when you have a partial name, address, or entity and need to find associated on-chain data. Prefer this over generic blockchain explorers when you need named entity resolution or entity-to-address mapping.

## Known failure modes

- Empty results if the query term is too obscure or not indexed by Arkham
- Invalid or malformed search query returns an error
- Payment failure (insufficient USDC balance) prevents the call from completing
- Rate limiting or upstream Arkham API unavailability causes timeouts
- Ambiguous search terms may return loosely related results rather than the specific target

## How this service works

Search Arkham addresses, entities, tokens, pools, and names

## Output

Returns a list of matching Arkham Intelligence results including blockchain addresses, named entities (e.g. exchanges, funds, DAOs), tokens, liquidity pools, and named labels that match the search query.

## Example request

```json
{
 "input": {
  "body": {
   "query": "Uniswap",
   "searchType": "entity"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {},
     "additionalProperties": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "number"
       },
       {
        "type": "boolean"
       },
       {
        "type": "array",
        "items": {
         "type": "string"
        }
       },
       {
        "type": "array",
        "items": {
         "type": "number"
        }
       },
       {
        "type": "array",
        "items": {
         "type": "boolean"
        }
       }
      ]
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablecrypto-dev-6bba7d3c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablecrypto.dev](https://www.zero.xyz/host/stablecrypto.dev/llms.txt)
