# AmanChain Token Launch Check

> AmanChain Token Launch Check is a paid API for AI agents from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai, paid per call via x402, $0.062207/call, status unknown (last checked 2026-09-15).

Checks on-chain state to evaluate whether a token launch meets readiness or validity criteria, using live consensus data from AmanChain nodes

## Facts

- Endpoint: POST https://preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/api/x402/aman-token-launch-check
- Price: $0.062207/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amanchain-token-launch-check-dd9ef558
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T0oO99ualzhiu62o8JPTO

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 amanchain-token-launch-check-dd9ef558 -d '<json body>'
```

Example prompt: Can you run a token launch check on AmanChain for the token at contract address 0xABC123 and tell me if the launch looks valid based on current on-chain pool and balance data?

## When to prefer this

Choose this endpoint when you need a deterministic, node-executed on-chain token launch validation using live consensus state on Base, without requiring an API key or account setup. Ideal for agents that need trustless, pay-per-call token launch checks settled in USDC.

## Known failure modes

- Invalid or malformed contract address returns an error or empty result
- Token not yet indexed by AmanChain node returns not-found response
- Network congestion or node unavailability causes timeout
- Incorrect serviceId value causes request rejection
- Insufficient USDC payment via x402 results in 402 Payment Required response

## How this service works

Token Launch Check: node-operated on-chain service Executed deterministically by the AmanChain node against live consensus state (real blocks, pools, balances) — paid per call via x402, settled in USDC on Base. Input: JSON body {"serviceId":"aman-token-launch-check","request":"<input>"}. No account, no API key.

## Output

Returns a structured assessment of the token launch's on-chain validity, including checks against live block data, pool states, and account balances, indicating whether the launch meets readiness criteria or surfaces any issues.

## 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",
     "properties": {
      "request": {
       "type": "string",
       "description": "service input (see body example)"
      },
      "serviceId": {
       "type": "string",
       "description": "the service id, \"aman-token-launch-check\""
      }
     }
    },
    "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"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amanchain-token-launch-check-dd9ef558/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai](https://www.zero.xyz/host/preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/llms.txt)
