# OnchainPulse Algorand ASA Token Safety Scanner

> OnchainPulse Algorand ASA Token Safety Scanner is a paid API for AI agents from onchainpulse.theaslangroupllc.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Scans any Algorand Standard Asset (ASA) for rug-pull risks and token safety, returning a deterministic CLEAR/CAUTION/AVOID verdict based on on-chain authority flags, concentration metrics, DEX verification, and live liquidity data.

## Facts

- Endpoint: GET https://onchainpulse.theaslangroupllc.com/api/asatoken
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onchainpulse-algorand-asa-token-safety-scanner-14dda32d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7cg2BPJKUYp5DTD8mWNC6

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 onchainpulse-algorand-asa-token-safety-scanner-14dda32d
```

Example prompt: Before I ape into this Algorand token, run a rug-pull safety scan on ASA ID 1265975021 — I need to know if there are any clawback, freeze, or honeypot flags, plus whether it's verified on Pera or Tinyman and what the live liquidity looks like.

## When to prefer this

Choose this endpoint when you need a deterministic, pre-trade rug-pull safety check specifically for Algorand Standard Assets (ASAs). It is the only endpoint that reads AVM-native risk surfaces (clawback/freeze/manager authorities, default-frozen flag) combined with Pera and Tinyman verification tiers and live Tinyman DEX liquidity in a single fused verdict. Prefer it over generic token-safety tools when trading or sniping on Algorand DEXes, or when building Algorand-specific trading bots that require automated go/no-go signals before execution.

## Known failure modes

- Invalid or non-existent ASA ID returns an error or empty response
- ASA not yet listed on Tinyman returns null liquidity/volume fields
- Network timeouts from Algorand node or Tinyman API result in partial data
- Newly created ASAs with no trading history may have limited concentration data
- Payment failure via x402 protocol returns 402 status before scan is performed

## How this service works

Rug & token-safety scanner for Algorand ASAs — the first automated pre-trade check on the chain. Reads the AVM rug surface directly (clawback/freeze/manager authorities, default-frozen honeypot flag, reserve overhang), whale & creator concentration with DEX-pool accounts split out, Pera & Tinyman verification tiers, and live Tinyman liquidity/volume — fused into one deterministic CLEAR / CAUTION / AVOID verdict. Answers: is this token safe to buy?

## Output

Returns a deterministic three-tier safety verdict (CLEAR, CAUTION, or AVOID) for the queried ASA, accompanied by the specific on-chain risk factors that drove the verdict: presence or absence of clawback, freeze, and manager authority addresses; default-frozen honeypot flag status; reserve token overhang; whale and creator wallet concentration percentages with DEX pool accounts split out; Pera and Tinyman verification tier levels; and live Tinyman liquidity depth and trading volume figures.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "asset"
 ],
 "properties": {
  "asset": {
   "type": "string",
   "description": "Algorand Standard Asset id (integer)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": "2726252423",
  "chain": "algorand",
  "safety": {
   "source": "nodely-indexer+tinyman+pera",
   "default_frozen": false,
   "freeze_disabled": true,
   "config_immutable": false,
   "tinyman_verified": true,
   "clawback_disabled": true,
   "verification_tier": "verified"
  },
  "is_safe": false,
  "sources": {
   "pera": true,
   "tinyman": true,
   "nodely_indexer": true
  },
  "verdict": "CAUTION",
  "momentum": {
   "read": "$65,139 Tinyman liquidity, $2,744 24h vol, 412.5d old",
   "age_days": 412.5,
   "price_usd": 0.0041,
   "vol_24h_usd": 2744,
   "liquidity_usd": 65139,
   "price_change_24h_pct": -1.2
  },
  "one_liner": "Manager still set — remaining authorities can be rotated to new addresses",
  "red_flags": [
   "Manager still set — reserve/manager rotatable (clawback & freeze stay locked regardless)"
  ],
  "confidence": "high",
  "disclaimer": "On-chain ASA facts + observed market state, not financial advice or a price prediction. New ASAs are extremely high-risk.",
  "risk_score": 14,
  "green_flags": [
   "Clawback permanently disabled (issuer can never seize your tokens)",
   "Freeze permanently disabled (your wallet cannot be frozen)",
   "Pera verification: verified"
  ],
  "concentration": {
   "creator_pct": 2.1,
   "top10_holder_pct": 38.2,
   "contract_held_pct": 9.8,
   "reserve_pct_of_total": 12.4
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onchainpulse-algorand-asa-token-safety-scanner-14dda32d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from onchainpulse.theaslangroupllc.com](https://www.zero.xyz/host/onchainpulse.theaslangroupllc.com/llms.txt)
