# Arkham Intelligence Entity Types

> Arkham Intelligence Entity Types 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-14).

Returns the full list of entity type classifications used in Arkham's wallet intelligence taxonomy (e.g. gaming, derivatives, misc).

## Facts

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

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-entity-types-b66f43f1 -d '<json body>'
```

Example prompt: What are all the entity type categories Arkham uses to classify wallets — like gaming, derivatives, and so on — so I can filter my intelligence queries properly?

## When to prefer this

Use this endpoint when you need to enumerate valid entity type values before filtering or querying Arkham intelligence data — especially when building dynamic UIs, constructing parameterized entity searches, or mapping Arkham's taxonomy to another classification system. Prefer this over hardcoding entity type strings, as the taxonomy may change.

## Known failure modes

- Payment failure: insufficient USDC balance or malformed x402 payment header returns 402
- Authentication failure: missing or invalid API key returns 401
- Rate limiting: too many requests in a short window may return 429
- Service unavailability: Arkham API downtime returns 503

## How this service works

List supported Arkham entity types. $0.20 per call.

## Output

A JSON array of strings representing all entity type labels used by Arkham's intelligence system (e.g. ['gaming', 'derivatives', 'misc']). No pagination — returns the full flat taxonomy in a single response.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": [
  "gaming",
  "derivatives",
  "misc"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arkham-intelligence-entity-types-b66f43f1/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)
