Coingecko API Data
by Coingecko SerenAI
This Coingecko API provides access to 50+ market data endpoints and 2 years historical data
by Nasdaq Data Link SerenAI
This Nasdaq Data Link API provide access to all Nasdaq Data Link Sources
Install the x402 MCP server to let your AI agent access this data with automatic USDC payments on Base.
Add to claude_desktop_config.json:
{
"mcpServers": {
"x402": {
"command": "npx",
"args": ["@serendb/x402-mcp-server"],
"env": {
"X402_GATEWAY_URL": "https://x402.serendb.com",
"WALLET_PRIVATE_KEY": "0x...",
"BASE_RPC_URL": "https://mainnet.base.org"
}
}
}
}claude mcp add x402 \ --env X402_GATEWAY_URL=https://x402.serendb.com \ --env WALLET_PRIVATE_KEY=your_private_key \ --env BASE_RPC_URL=https://mainnet.base.org \ -- npx @serendb/x402-mcp-server
Replace your_private_key with your actual private key.
First, install globally to avoid timeout issues:
npm install -g @serendb/x402-mcp-server
Then add to ~/.cursor/mcp.json:
{
"mcpServers": {
"x402": {
"command": "x402-mcp-server",
"args": [],
"env": {
"X402_GATEWAY_URL": "https://x402.serendb.com",
"WALLET_PRIVATE_KEY": "0x...",
"BASE_RPC_URL": "https://mainnet.base.org"
}
}
}
}Access data directly via HTTP using the x402 payment protocol.
HTTP 402 with payment requirements (amount, wallet, EIP-712 data)X-PAYMENT header containing the signaturecurl -X POST https://x402.serendb.com/api/proxy \
-H "Content-Type: application/json" \
-d '{
"providerId": "5eddc36b-6c50-4f84-89fb-88b0362dff13",
"agentWallet": "0xYourWalletAddress",
"request": {
"method": "GET",
"path": "/endpoint"
}
}'This returns 402 Payment Required with the payment details you need to sign.
After signing the EIP-712 authorization, add the base64-encoded signature:
curl -X POST https://x402.serendb.com/api/proxy \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <base64-encoded-signature>" \
-d '{ ... }'Pay per API call via x402 protocol
0x83334ef0C6f6396413C508A7762741e9FD8B20E9by Coingecko SerenAI
This Coingecko API provides access to 50+ market data endpoints and 2 years historical data
by U.S. Department of the Treasury
This API provides access to a wide range of public federal financial data, including topics like public debt, revenue, spending, interest rates, and more