# Cosmos Token Price (api.web3identity.com)

> Cosmos Token Price (api.web3identity.com) 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-14).

Returns the current price and 24-hour change for the Cosmos (ATOM) token, aggregated from multiple price sources

## Facts

- Endpoint: GET https://api.web3identity.com/api/price/cosmos
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-web3identity-com-099b8ded
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JFUOyFg00fEnFRmdhP_UE

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-099b8ded
```

Example prompt: What's the current price of Cosmos (ATOM) right now, and how much has it changed in the last 24 hours?

## When to prefer this

Use this endpoint when you specifically need the current price of the Cosmos (ATOM) token and want data aggregated from multiple sources for reliability. Prefer this over single-source price feeds when accuracy and cross-source validation matter. Best for lightweight real-time lookups rather than historical or OHLCV data.

## Known failure modes

- Token not found or unsupported: returns error or empty response
- Price data temporarily unavailable from all aggregated sources
- Rate limiting or payment failure ($0.01 USDC x402 not processed): returns 402 Payment Required
- Network timeout from upstream price aggregators

## How this service works

Get current token price from multiple aggregated sources

## Output

Returns a JSON object containing the token symbol (e.g. 'COSMOS'), the current price as a number, the currency denomination (e.g. 'USD'), and the 24-hour price change percentage — aggregated from multiple on-chain and off-chain price sources.

## 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": {
      "price": {
       "type": "number"
      },
      "token": {
       "type": "string"
      },
      "currency": {
       "type": "string"
      },
      "change24h": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

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