๐Ÿš€ Free Crypto Arbitrage API

Real-time cryptocurrency prices and arbitrage opportunities. Perfect for trading bots and financial applications.

API Base URL:
https://api.incrypto.net
API Key (Free):
incrypto-n8n-key-2024

Include the API key in headers: X-API-Key: incrypto-n8n-key-2024

API Status
Checking...
Database
Checking...
Last Update
--:--:--
Active Opportunities
0
Real-time Prices
Click "BTC Data" to load cryptocurrency information...
Triangular Arbitrage
Arbitrage opportunities will appear here...
Arbitrage calculation results will be displayed here...
Historical Data
Select cryptocurrency and time period to view historical data...
API Endpoints
GET

Health Check

/health

Check API server status and database connection

GET

Crypto Data

/api/fresh-crypto-data?cryptocurrency=bitcoin

Real-time cryptocurrency prices from multiple exchanges

GET

Multi-Currency Data

/api/multi-crypto-data

Simultaneous BTC, ETH, USDT data with auto-save to database

GET

Triangular Arbitrage

/api/test-triangular

Calculate triangular arbitrage opportunities between BTC/ETH/USDT

GET

Historical Data

/api/historical-data?cryptocurrency=bitcoin&hours=24

Query historical price data from PostgreSQL database

GET

Recent Opportunities

/api/recent-opportunities?min_profit=0.5

Get recent arbitrage opportunities from database

Quick Start
curl -H "X-API-Key: incrypto-n8n-key-2024" \
"https://api.incrypto.net/api/fresh-crypto-data"
const API_KEY = 'incrypto-n8n-key-2024';
const response = await fetch(
'https://api.incrypto.net/api/fresh-crypto-data',
{ headers: { 'X-API-Key': API_KEY } }
);
const data = await response.json();
import requests

API_KEY = 'incrypto-n8n-key-2024'
headers = {'X-API-Key': API_KEY}
response = requests.get(
'https://api.incrypto.net/api/fresh-crypto-data',
headers=headers
)
data = response.json()