CryptAPI
Keyless crypto payment-gateway helper API
A non-custodial crypto payment processor whose read endpoints are keyless. The /{coin}/info/ call returns a coin's minimum amounts, forwarding fee and live fiat conversion rates. Designed for generating payment addresses and callbacks in commercial checkout flows.
GET https://api.cryptapi.io/btc/info/
{
"coin": "Bitcoin",
"ticker": "btc",
"minimum_transaction_coin": "0.00008000",
"fee_percent": "1.000",
"status": "success",
"prices": {
"AED": "229881.4614952677",
"AUD": "90169.0549909221"
}
}curl "https://api.cryptapi.io/btc/info/"const res = await fetch("https://api.cryptapi.io/btc/info/");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.cryptapi.io/btc/info/")
print(res.json())/btc/info/PROBEDKeyless crypto payment-gateway helper API
/btcBtc — documented GET route.
/btc/1Btc details by ID (example: 1).
/btc?limit=10Btc — documented GET route.
/btc/search?q=testSearch by query parameters.
/api/tickercreateTickercreate — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
CryptAPI: common questions
Is CryptAPI free to use?
Yes — CryptAPI is a free crypto & web3 API. Free tier: Free API; provider takes ~1% fee per forwarded payment. Commercial use is allowed on the free tier.
Does CryptAPI need an API key?
No — CryptAPI needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call CryptAPI from the browser?
Yes — CryptAPI returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is CryptAPI up right now?
As of our last scheduled check, CryptAPI is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.