CryptAPI

Keyless crypto payment-gateway helper API

🪙 Crypto & Web3UNMONITOREDchecked 58 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
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"
  }
}
Call itcurl · fetch · python
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())
Endpoints · 6On scheduleFULL DOCS ↗
First rollup pending — GET /btc/info/ has been probed
GET/btc/info/PROBED

Keyless crypto payment-gateway helper API

GET/btc

Btc — documented GET route.

GET/btc/1

Btc details by ID (example: 1).

GET/btc?limit=10

Btc — documented GET route.

GET/btc/search?q=test

Search by query parameters.

GET/api/tickercreate

Tickercreate — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.