# 402.com.tr Token Sellability Checker

> 402.com.tr Token Sellability Checker is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Analyzes a token contract's sellability via honeypot detection, live transfer simulation, and exit liquidity assessment to return a hard canSell verdict with supporting reasons.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/sellability
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-token-sellability-checker-75745ade
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C0jYpaULqLTiqnrfk1OUn

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 402-com-tr-token-sellability-checker-75745ade
```

Example prompt: Before I buy, can you run a full sellability check on token contract 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed on Base — and check for honeypot traps, sell taxes, and whether I could actually exit a $500 position?

## When to prefer this

Use this endpoint when you need the most comprehensive token sell safety check before a purchase decision — especially when you want a live simulation (not just static analysis), a hard canSell verdict with reasons, and exit liquidity data for a specific position size. Prefer over simple honeypot checkers when a definitive go/no-go answer with multiple corroborating signals is needed.

## Known failure modes

- Invalid or non-existent contract address returns error
- Token on unsupported chain returns no result
- Live simulation may fail if no real holder is found
- Network timeouts during live transfer simulation
- Position size parameter missing causes incomplete exit liquidity check

## How this service works

The hard honeypot question, answered three ways: security simulation (honeypot, cannot-sell-all, sell/buy tax, transfer-pausable), a LIVE transfer simulation we run ourselves from a real holder (reverts/taxed?), and exit liquidity. Returns a hard canSell verdict with reasons. Selling is where rugs hide — check before you buy.

## Output

Returns a hard canSell boolean verdict along with reasons explaining the decision, covering: honeypot simulation flags (cannot-sell-all, sell/buy tax rate, transfer-pausable), results of a live transfer simulation run from a real holder (did it revert or was it taxed?), and an exit liquidity assessment for the given position size.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "size": {
       "type": "string",
       "description": "Position size USD (exit check)"
      },
      "address": {
       "type": "string",
       "description": "Token contract address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-token-sellability-checker-75745ade/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
