HostDeFi

by Unknown

Not rated
Website

About

Free token-safety scans plus paid x402 verdicts, signals, radar and EVM swap quotes for AI agents.

Details

Author
Unknown
Categories
Finance, Other, AI

← HostDeFi Home·Docs·Methodology·Precision report·Badges & embeds

One call in, one verdict out. POST a token address and get back the same proprietaryA+–F Safety Readthat powers HostDeFi's token pages — a graded score with plain-English receipts of what was checked and, honestly, what could not be —plus the pre-graduation on-chain signals most risk APIs are blind to: bundled-launch detection, curve-aware holder concentration, and Token-2022 trap flags. Built for the people who scan tokens thousands of times a day: Solana trading bots, wallets, portfolio apps and DEX front-ends.

Base URLhttps://hostdefi.com/api— so the graded verdict lives at/api/v1/token-risk. (The legacyawake-integrity-production-faa0.up.railway.apphost keeps working for existing integrations, but new code should use the hostdefi.com base — it is the one we guarantee.)

The verdict path never calls an LLM, so responses are fast and deterministic. All figures are computed from public on-chain and market data at request time and stamped withcheckedAt.

The free tier needsno key— just call the endpoint. It is rate-limited per IP, matching the "free, no signup" promise of the web scanner. For higher volume, batch access and the full pre-graduation signal set, buy an API key with SOL (seeGetting a key) and send it as thex-api-keyheader.

Prices are SOL-denominated and may be adjusted as the SOL price moves — checkGET /v1/healthfor the current table.

POST /v1/token-risk— body{ "query": "<address or name/ticker>" }.
GET /v1/token-risk/:chain/:address— when you already know the chain (solana,ethereum,bsc,base,arbitrum,optimism,polygon,avalanche).

# Free tier — no key needed curl -s https://hostdefi.com/api/v1/token-risk \ -H 'Content-Type: application/json' \ -d '{"query":"DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"}' # Paid tier — send your key curl -s https://hostdefi.com/api/v1/token-risk \ -H 'Content-Type: application/json' -H 'x-api-key: vx_your_key' \ -d '{"query":"WIF"}'
{ "ok": true, "token": { "chain": "solana", "address": "...", "name": "...", "symbol": "..." }, "risk": { "graded": true, "score": 78, "grade": "B", "tier": "low", "verdict": "mint & freeze renounced · deep liquidity.", "knowns": [ ["ok","Mint revoked"], ["ok","No freeze authority"], ["bad","Top-10 hold 41%"] ], "unknowns": [ "dev wallet", "launch bundling" ], "notGradedReason": null }, "signals": { "authorities": { "mintDisabled": true, "freezeDisabled": true }, "token2022Extensions":{ "permanentDelegate": false, "transferHook": false, "pausable": false, "...": false }, "holders": { "top10Pct": 41.2, "curveExcluded": true }, "launch": { "bundled": false, "firstSlotTxs": 1, "preGraduation": false }, "market": { "liquidityUsd": 152000, "volume24h": 84000, "priceUsd": 0.0000123 } }, "meta": { "checkedAt": "2026-08-08T...Z", "sources": ["dexscreener","verixia-onchain"], "partial": false, "plan": "free", "remaining": 97 } }

On EVM chains thesignalsobject carriesevmSecurityinstead (honeypot,buyTaxPct,sellTaxPct,mintable,pausable,blacklist,proxy,hiddenOwner,openSource), sourced from GoPlus.

- risk.gradedcan befalse.A wrong grade is worse than no grade, so the engine refuses to grade a token that is too fresh or too under-described (e.g. authorities unknown). When that happens you still get everysignalthatisknown — readnotGradedReason.
- unknownsis a real list.It names what could not be verified from public data (LP lock, deployer history, …) so you never mistake silence for a clean bill.
- meta.partial: truemeans one enriching source was unreachable (e.g. the pre-graduation signal service); the verdict still stands on what was available.
- The scoring is documented in themethodology, and its measured hit-rate is published in theself-grading precision report.

When a token launches on a bonding curve it has no DEX pool yet, so pool-based tools return nothing about it — exactly when a sniper most needs a read. HostDeFi reads the mint directly on-chain and returns, for brand-new tokens:bundled-launch detection(launch.bundled— supply split across wallets that all bought in the same block, which defeats naive concentration checks),curve-aware concentration(holders.top10Pctwith the bonding-curve account excluded, so a healthy token doesn't read 99% held), andToken-2022 trap flags(token2022Extensions— permanent delegate, transfer hook, pausable and the rest).launch.preGraduation: truemarks a token that is still on the curve.
- Send the plan amount in SOL to the HostDeFi wallet47sLuYEAy1zVLvnXyVd4m2YxK2Vmffnzab3xX3j9wkc5(0.15 / 0.5 / 1.5 SOL for Builder / Pro / Scale).
- Once the transaction confirms, POST its signature to claim your key:

curl -s https://hostdefi.com/api/v1/keys \ -H 'Content-Type: application/json' \ -d '{"signature":"<your_tx_signature>","plan":"week"}' # plan: "week" (Builder) | "month" (Pro) | "year" (Scale) # -> { "ok": true, "apiKey": "vx_...", "plan": "week", "quota": 10000, "expiresAt": ... }

The payment is verified on-chain by balance delta and the signature is burned after one use.Store the key — it is shown only once.Check remaining quota any time:

curl -s https://hostdefi.com/api/v1/usage -H 'x-api-key: vx_your_key' # -> { "ok": true, "plan": "week", "quota": 10000, "used": 132, "remaining": 9868, "expiresAt": ... }

Agents and bots that can't do signups can payper requestinstead — no key, no account. The API speaks thex402 protocol(v1): call a paid twin route under/v1/x402/, getHTTP 402with payment options (USDC on Solana), pay, and retry with theX-PAYMENTheader. Any standard x402 client does the whole loop automatically:

import { wrapFetchWithPayment } from "x402-fetch"; // the standard x402 client const payingFetch = wrapFetchWithPayment(fetch, yourWalletSigner); const res = await payingFetch( "https://hostdefi.com/api/v1/x402/token-risk/solana/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"); const verdict = await res.json(); // same A+–F Safety Read as every other tier

Paid twins:GET /v1/x402/token-risk/:chain/:address·POST /v1/x402/token-risk(free-form query) ·POST /v1/x402/token-risk/batch(flat price, up to 10 items — no plan needed on this lane). Agent-only extras:GET /v1/x402/signals/solana/:mint(the standalone pre-graduation signal set, $0.03) ·GET /v1/x402/authority/solana/:mint(authority quick-check, $0.005) ·POST /v1/x402/portfolio(wallet audit — largest holdings graded, $0.08) ·GET /v1/x402/radar(recent trend-radar alerts as JSON, $0.01). Live price sheet:GET /v1/x402/pricing; discovery manifest athttps://hostdefi.com/.well-known/x402.

Bulk data products (same pay-per-call lane, dated weekly-snapshot data):GET /v1/x402/obituaries(the rug/collapse gate-exit ledger, $0.02) ·GET /v1/x402/listings/:chain(graded token listing — solana, ethereum, base or arbitrum, $0.05) ·GET /v1/x402/datasets/safety-snapshot(the full weekly safety dataset in one call, $0.25) ·GET /v1/x402/radar/history(full retained radar alert history, $0.03). And with one x402 payment,POST /v1/x402/keys($5) mints a 30-day Agent-plan API key (5,000 calls, batch enabled) — the key arrives in the paid response; no account, no signup. Offers now includeUSDC on Base, Polygon, Arbitrum and Avalancherails alongside Solana where available.

Agent frameworks that speakMCPcan use the same tools natively: point any MCP client at the streamable-HTTP serverhttps://hostdefi.com/api/v1/mcp— six tools (verdicts, pre-grad signals, radar, provider-risk, key purchase, free pricing), same x402 pay-per-call flow, same charge-on-success contract.

Paying other x402 sellers too? Vet them first:GET /v1/x402/provider-risk?resource={url}($0.02) grades any crawled x402 seller A–F from observable signals (402-spec fidelity, price sanity, payTo presence, TLS, latency), andGET /v1/x402/provider-risk/all($0.10) returns the full dated dataset.

Agents can alsotrade, not just read:GET /v1/x402/swap/evm/quote($0.01) returns a firm KyberSwap-routed EVM swap quote plus a ready-to-sign transaction for your own wallet — passchainId,sellTokenandbuyToken(nativeor a0x…address),sellAmountin base units andtaker(your address). Non-custodial: you sign and broadcast; we never hold funds. A 3% platform fee in the chain's native coin is priced into the returned transaction, on top of the swap.GET /v1/x402/swap/evm/price($0.002) is the cheap preview (expected + minimum output) before committing. A pair with no route answers an uncharged404, never a paid empty answer.

Fair-charging contract: you are charged only when a verdict is actually returned. Server errors are never charged, and if settlement fails the response is withheld. The settlement receipt (payer, transaction signature) comes back in theX-PAYMENT-RESPONSEheader andmeta.x402. Doing steady volume? An API key above is the cheaper per-call price — x402 is the zero-commitment lane.

- The free web scanner athostdefi.com/scanstays free and unlimited — the API is additive.
- EVM security fields come from GoPlus and may be cached up to ~10 minutes.
- This is on-chain risk data, not financial advice. A high grade is never a guarantee.
- Questions or a higher tier:
@hostdefiappsorTelegram.

See also:how the score is computed·the measured hit-rate·the free web scanner.

"Non-custodial DeFi execution layer for AI agents powered by the SwapWizard API — swap quotes and execution, zap in/out of LP positions, ro uting across AMMs, and pool discovery and analysis on 5 EVM chains.

Solana agent trust scoring via x402 micropayments.

Non-custodial stablecoin yield. Stablecoin Yield Index (SYX) + 12 USDC vault APYs across Ethereum, Base, Arbitrum.

Pay-per-call x402 data APIs for AI agents — token rug-check, on-chain reads, web search, and AI-visibility (does AI recommend a brand). USDC on Base, no API key.

Live cross-DEX crypto prices read from on-chain pool state: per-venue price, liquidity depth and gross cross-venue spread across BSC, Polygon, Arbitrum, Base, Avalanche and Optimism. Works keyless, no account.

MCP server for Base L2 DeFi operations with 9 monetized endpoints: gas estimates, yield farming, token analysis, contract audit, wallet health, DEX quotes, price feeds, mnemonic generation. Built with FastMCP Python SDK.

Crypto data & trading MCP with 42+ tools: prices, DeFi, NFTs, Solana swaps

DeFi execution on Base, Citrea, HyperEVM and Monad via Fibrous aggregation: swap quotes, swaps, transfers, cross-chain portfolio and Aave V3.

MCP server for Fuse Network: balances, tokens, staking, DeFi data, swaps and on-chain transactions.

MCP server for the Ophis intent-based DEX aggregator: quotes and gasless, MEV-protected swap orders across 11 chains.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.