Koko Finance Developer Docs

Credit card intelligence via REST API or MCP server. Analyze portfolios, compare cards, get recommendations, check renewal value, get merchant-level advice, extract card terms (APR/penalties), and track data changes over time.

REST API https://kokofinance.net/api/v1
MCP https://kokofinance.net/mcp/

Getting Started

Try the API in 60 seconds.

Get API Key — Free
1

Get an API Key

Sign up to get your free API key instantly (2,000 calls/month). Get your API key →

2

Make Your First Call

curl -X POST https://kokofinance.net/api/v1/cards/compare \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "card_names": [
      "Chase Sapphire Preferred",
      "Capital One Venture X"
    ],
    "params": {
      "spending": {"dining": 400, "travel": 500},
      "primary_goal": "travel"
    }
  }'
3

Or Use the Python SDK

pip install koko-finance
from koko_finance import KokoClient

client = KokoClient(api_key="YOUR_API_KEY")
result = client.compare_cards(
    cards=[
        {"card_name": "Chase Sapphire Preferred", "annual_fee": 95},
        {"card_name": "Capital One Venture X", "annual_fee": 395},
    ],
    spending={"dining": 400, "travel": 500},
    primary_goal="travel",
)
print(result)