DEVELOPER API

Powerful Cryptocurrency API for Developers

Access real-time cryptocurrency data, market statistics, and powerful tools through our comprehensive REST API. Build amazing applications with reliable, accurate data.

50+
API Endpoints
2,513+
Cryptocurrencies
0
API Calls/Month
99.9%
Uptime

Why Use Our API?

Everything you need to build powerful cryptocurrency applications

Real-Time Data

Get live cryptocurrency prices updated every few seconds with WebSocket support for instant updates.

Reliable & Secure

Enterprise-grade infrastructure with 99.9% uptime guarantee and secure API key authentication.

Easy Integration

RESTful API with comprehensive documentation and code examples in multiple languages.

Comprehensive Data

Access market data, historical prices, OHLC data, and more for thousands of cryptocurrencies.

POWERFUL FEATURES

Everything You Need in One API

Our API provides comprehensive cryptocurrency data with powerful features for developers

Real-Time Market Data

Live prices, market caps, volumes, and 24h changes for 10,000+ cryptocurrencies updated every minute.

Historical Price Data

Access years of historical OHLC data, daily/hourly charts, and price trends for detailed analysis.

Portfolio Management

Create, track and manage cryptocurrency portfolios with full transaction history and P&L calculations.

Price Alerts

Set custom price alerts with webhooks for instant notifications when prices hit your targets.

Exchange Information

Get data from major exchanges including trading pairs, volumes, and order book depth.

Blockchain Metadata

Access blockchain details including consensus types, block times, and network statistics.

QUICK START

Get Started in 3 Simple Steps

Start integrating our API into your application in just a few minutes

1

Create Account

Sign up for a free account and choose your subscription plan based on your needs.

2

Generate API Key

Access your dashboard to generate your unique API key with custom permissions.

3

Start Building

Use our documentation and code examples to integrate the API into your app.

Quick Start

Get started in minutes with our simple API

curl -X GET 'https://api.codic.online/v1/markets' \
  -H 'X-API-Key: your_api_key' \
  -H 'Accept: application/json'
const response = await fetch('https://api.codic.online/v1/markets', {
  method: 'GET',
  headers: {
    'X-API-Key': 'your_api_key',
    'Accept': 'application/json'
  }
});

const data = await response.json();
console.log(data);
import requests

url = 'https://api.codic.online/v1/markets'
headers = {
    'X-API-Key': 'your_api_key',
    'Accept': 'application/json'
}

response = requests.get(url, headers=headers)
data = response.json()
print(data)
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.codic.online/v1/markets');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'X-API-Key: your_api_key',
    'Accept: application/json'
]);

$response = curl_exec($ch);
curl_close($ch);

$data = json_decode($response, true);
print_r($data);
Sample Response
{
  "success": true,
  "data": [
    {
      "id": "bitcoin",
      "symbol": "BTC",
      "name": "Bitcoin",
      "current_price": 67234.50,
      "market_cap": 1320000000000,
      "price_change_24h": 2.34,
      "volume_24h": 28500000000
    }
  ],
  "meta": {
    "total": 10000,
    "page": 1,
    "per_page": 100
  }
}

Available Endpoints

Explore our comprehensive API endpoints

Markets

GET /api/v1/markets

Get list of all cryptocurrencies with market data

GET /api/v1/markets/{id}

Get detailed information for a specific cryptocurrency

GET /api/v1/markets/{id}/history

Get historical price data for a cryptocurrency

Portfolio

GET /api/v1/portfolio

Get user portfolio holdings and performance

POST /api/v1/portfolio/transactions

Add a new transaction to your portfolio

Alerts

GET /api/v1/alerts

Get all price alerts for the authenticated user

Supported Cryptocurrencies

Access data for thousands of cryptocurrencies including

SHISA SHISA
Bitcoin BTC
Ethereum ETH
Tether USDT
XRP XRP
BNB BNB
Solana SOL
USD Coin USDC
TRON TRX
Lido Staked Ether STETH
Dogecoin DOGE
Figure Heloc FIGR_HELOC

+ 2,501 more cryptocurrencies

FAQ

Frequently Asked Questions

Everything you need to know about our API

We use API key authentication. Include your API key in the X-API-Key header with every request. Keys are generated in your dashboard and can have custom permissions.
Rate limits depend on your plan: Free tier gets 1,000 calls/month, Premium gets 10,000 calls/month, and Pro users enjoy unlimited API calls. All plans include rate limit headers in responses.
Market prices are updated every 60 seconds. Historical data is updated daily. Our infrastructure ensures you always have access to the most recent cryptocurrency data available.
Yes! Premium and Pro users can set up webhooks for price alerts. When a cryptocurrency hits your target price, we send a POST request to your configured endpoint instantly.
Yes, we provide a sandbox environment for testing. Use the same endpoints with a test API key prefix (sk_test_) to test your integration without affecting your rate limits.
All API responses are in JSON format. We include comprehensive metadata including pagination info, rate limit status, and request timestamps in every response.
USE CASES

What Can You Build?

Our API powers thousands of applications across the cryptocurrency ecosystem

Mobile Apps

Build portfolio trackers, price alerts, and trading apps for iOS and Android.

Dashboards

Create real-time crypto dashboards with charts, analytics, and market insights.

Trading Bots

Power automated trading strategies with reliable real-time market data.

News & Media

Embed live crypto prices and market data into news sites and blogs.

Ready to Get Started?

Choose the plan that fits your needs. Pro users get unlimited API access with higher rate limits.

Free

$0

1,000 calls/month

Basic endpoints only

POPULAR

Premium

$19/mo

10,000 calls/month

All endpoints + webhooks

Pro

$49/mo

Unlimited calls

Everything + priority support

Start Building Today

Join thousands of developers using our API to power their cryptocurrency applications.