The same data that powers sweepbase.net: 141 crypto debit and credit cards with 46 fields each, covering fees, cashback, custody model, card network, regional availability, top-up methods, and welcome bonuses. Released under CC-BY 4.0, free to use, share, and adapt with attribution.
Version 2026-06-23 · Source data last refreshed
Each row is one card. The columns cover nine editorial dimensions:
The full schema with per-column semantics is in the README.
The dataset is released under the Creative Commons Attribution 4.0 International (CC-BY 4.0) license. You can:
Attribution required: a machine-readable link back to sweepbase.net or the specific card page you referenced satisfies the CC-BY requirement.
Suggested citation
Sweepbase (2026). Sweepbase Crypto Cards Dataset. Compiled by Mihail B. Retrieved from https://sweepbase.net/datasets/sweepbase-crypto-cards.csv. Licensed under CC-BY 4.0.
Python (pandas):
import pandas as pd
df = pd.read_csv("https://sweepbase.net/datasets/sweepbase-crypto-cards.csv")
print(df.shape) # (141, 46)
free_cards = df[df["Annual Fee"].str.contains("Free", case=False, na=False)]JavaScript (fetch):
const res = await fetch("https://sweepbase.net/datasets/sweepbase-crypto-cards.json");
const cards = await res.json();
const selfCustody = cards.filter((c) => /self-custody/i.test(c.Custody));Shell:
curl -LO https://sweepbase.net/datasets/sweepbase-crypto-cards.csv sha256sum sweepbase-crypto-cards.csv # compare against metadata.json → files.csv.sha256
Dataset version 2026-06-23 · 141 cards · metadata.json