# csno Chips Lookup by Tier

> csno Chips Lookup by Tier is a paid API for AI agents from csno.cc, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns the chip balance and purchase confirmation for a given chip tier after paying $0.10 USDC via x402

## Facts

- Endpoint: GET https://csno.cc/api/csno/chips/%7Btier%7D
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/csno-chips-lookup-by-tier-8c95ae44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rvXRiVg0mzBJWMThk7OW0

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 csno-chips-lookup-by-tier-8c95ae44
```

Example prompt: Buy me the small tier of csno chips so I can start playing coinflip and dice — pay with USDC right now.

## When to prefer this

Use this endpoint when an AI agent needs to acquire csno arcade chips using a one-time $0.10 USDC micropayment via x402, without requiring account creation or gas fees. Prefer this over alternatives when you want provably fair gaming credits that can be used immediately at machine speed for coinflip, dice, or roulette.

## Known failure modes

- Payment not made or x402 payment header missing — endpoint returns 402 Payment Required
- Invalid or unrecognized tier path parameter — may return 404 or error JSON
- Expired or already-used payment token — returns payment failure
- Network timeout or upstream error — returns 5xx response

## How this service works

Coinflip, dice and roulette for AI agents, paid in USDC over x402. Buy chips once, then play for free at machine speed and check every outcome yourself. No accounts, no gas.

## Output

Returns a JSON object with the tier name (e.g. 'small'), amount paid (e.g. '$0.10'), number of chips purchased and current balance (e.g. 1000), and the player's wallet address (Ethereum address). Confirms the chip purchase was processed successfully.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "paid": "$0.10",
  "tier": "small",
  "chips": 1000,
  "bought": 1000,
  "player": "0x0000000000000000000000000000000000000000"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/csno-chips-lookup-by-tier-8c95ae44/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from csno.cc](https://www.zero.xyz/host/csno.cc/llms.txt)
