# AmanChain Token Launch Check

> AmanChain Token Launch Check is a paid API for AI agents from amanchain-relay.gitajhd.workers.dev, paid per call via x402, $0.007465/call, status unknown (last checked 2026-09-13).

Checks on-chain data to assess the status and viability of a token launch against live consensus state

## Facts

- Endpoint: POST https://amanchain-relay.gitajhd.workers.dev/api/x402/aman-token-launch-check
- Price: $0.007465/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amanchain-token-launch-check-95b5276d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B8DcvA8Nias7MiG4TLHli

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-95b5276d -d '<json body>'
```

Example prompt: Can you check the on-chain launch status of the token at address 0xAbCd1234... on Base — I want to know if it's live, if there's a pool, and whether the launch looks legitimate?

## When to prefer this

Use this endpoint when you need deterministic, node-executed verification of a token launch directly against live on-chain consensus state, without relying on third-party indexers or APIs that may lag. Ideal for time-sensitive launch checks, pre-trade verification, or fraud screening where ground-truth blockchain data matters. Pay-per-call with no account or API key required makes it easy to integrate into automated workflows.

## Known failure modes

- Token contract address not found on-chain — returns null or not-found status
- Invalid or malformed token identifier in request body
- Payment not settled — x402 payment required error if USDC not provided
- Node temporarily out of sync with live consensus — stale data possible
- Network errors connecting to Base or Ethereum nodes
- Unrecognized serviceId — must be exactly 'aman-token-launch-check'

## How this service works

Token launch pre-flight validator — validates symbol, name, decimals and supply, and returns the exact launch fee before you deploy an AMT-20 token. Deterministic on-chain execution by the AmanChain node — live consensus state, real blocks, pools and balances. Pay per call via x402 (USDC on Base), no account, no API key. POST JSON {"serviceId":"aman-token-launch-check","request":"<input>"}.

## Output

Returns on-chain data about a token launch including deployment status, pool existence, balance information, and other consensus-state signals relevant to assessing whether a token launch is complete and legitimate.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "example": {
      "ok": true
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amanchain-token-launch-check-95b5276d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from amanchain-relay.gitajhd.workers.dev](https://www.zero.xyz/host/amanchain-relay.gitajhd.workers.dev/llms.txt)
