# Web3Identity AI Token List

> Web3Identity AI Token List is a paid API for AI agents from api.web3identity.com, paid per call via x402, $0.010000/call, status unknown (last checked 2026-09-15).

Returns a list of AI and machine learning crypto tokens with their current prices and project metadata

## Facts

- Endpoint: GET https://api.web3identity.com/api/tokens/ai
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-web3identity-com-aebf7fe4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TLFmqrU3vvDoTU5TkJ0ig

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 api-web3identity-com-aebf7fe4
```

Example prompt: Can you pull up the full list of AI and machine learning crypto tokens with their current prices and project details?

## When to prefer this

Use this endpoint when you need a pre-filtered, categorized list of AI and machine learning crypto tokens with prices in one call, rather than querying individual token prices or building your own category filter. Ideal for dashboards, sector analysis, or agent workflows that need to survey the AI crypto landscape without specifying individual token symbols.

## Known failure modes

- Payment not provided or insufficient — 402 Payment Required
- Rate limit exceeded — 429 Too Many Requests
- Service temporarily unavailable — 503
- Empty token list returned if no AI tokens are indexed at query time

## How this service works

AI and machine learning tokens list with prices and project data

## Output

An array of AI/ML-category crypto tokens, each including the token name, symbol, current price (as a number), and category label for project classification.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tokens": {
       "type": "array",
       "items": {
        "properties": {
         "name": {
          "type": "string"
         },
         "price": {
          "type": "number"
         },
         "symbol": {
          "type": "string"
         },
         "category": {
          "type": "string"
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

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