Integration with CoinTracker
CoinTracker — crypto tax service popular in USA (official Coinbase partner). Supports 10,000+ cryptocurrencies, integration with TurboTax and H&R Block for direct tax return filing.
CoinTracker CSV Format
interface CoinTrackerCSVRow {
date: string; // "Jan 15, 2024"
receivedQuantity: string;
receivedCurrency: string;
sentQuantity: string;
sentCurrency: string;
feeAmount: string;
feeCurrency: string;
tag: string; // "staking" | "airdrop" | "fork" | "mining" | ""
}
function exportToCoinTrackerCSV(transactions: InternalTransaction[]): string {
const headers = [
"Date", "Received Quantity", "Received Currency",
"Sent Quantity", "Sent Currency", "Fee Amount", "Fee Currency", "Tag"
];
const rows = transactions.map(tx => [
format(tx.timestamp, "MMM d, yyyy"),
tx.amountIn?.toString() ?? "",
tx.assetIn ?? "",
tx.amountOut?.toString() ?? "",
tx.assetOut ?? "",
tx.feeAmount?.toString() ?? "",
tx.feeCurrency ?? "",
mapToTag(tx.taxCategory),
].join(","));
return [headers.join(","), ...rows].join("\n");
}
Difference from Koinly
| Parameter | CoinTracker | Koinly |
|---|---|---|
| Audience | USA (TurboTax/H&R Block) | Global |
| CSV format | Specific | Universal |
| API | Limited | Partner API |
Adding CoinTracker export to existing platform — 2-3 business days.







