# Meme Tokens List with Prices and Community Metrics

> Meme Tokens List with Prices and Community Metrics 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 meme tokens with their current prices, market caps, and community metrics

## Facts

- Endpoint: GET https://api.web3identity.com/api/tokens/memecoins
- 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-b0f0f4bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u5W298aWxe3kvqisSbmKA

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-b0f0f4bc
```

Example prompt: Can you pull up the current list of meme tokens with their prices and market caps so I can see what's trending in the meme coin space?

## When to prefer this

Use this endpoint when you need a broad overview of multiple meme tokens at once, including prices and market metrics, rather than looking up a single token's price. Prefer this over the single-token price endpoint when building dashboards, comparisons, or market surveys focused specifically on meme coins.

## Known failure modes

- Payment required (402) if x402 payment header not included
- Empty token list if no meme coins are indexed
- Service unavailable if data aggregation backend is down
- Stale data if price feeds are delayed

## How this service works

Meme tokens list with prices and community metrics

## Output

Returns an array of meme token objects, each containing the token name, ticker symbol, current price (as a number), and market capitalization, providing a snapshot of the meme coin market.

## 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"
         },
         "marketCap": {
          "type": "number"
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-web3identity-com-b0f0f4bc/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)
