본문으로 건너뛰기
Loading live prices...

실시간 암호화폐 가격 데이터 API

15 개 이상의 주요 토큰에 대한 실시간 가격 정보를 제공하는 강력한 GraphQL API입니다. 엔터프라이즈급 신뢰성과 100 ms 미만의 지연 시간으로 단일 요청에서 여러 자산을 조회하세요.

15 개 이상의 지원 암호화폐

모든 주요 암호화폐의 실시간 가격 데이터에 액세스하세요

BTC

Bitcoin

BTC/USDT

The first cryptocurrency and digital store of value

ETH

Ethereum

ETH/USDT

A decentralized platform for smart contracts and DApps

SOL

Solana

SOL/USDT

A high-performance blockchain for decentralized applications

ADA

Cardano

ADA/USDT

A proof-of-stake blockchain platform focused on sustainability

ATOM

Cosmos

ATOM/USDT

An ecosystem of connected blockchains

AVAX

Avalanche

AVAX/USDT

A scalable smart contracts platform

BCH

Bitcoin Cash

BCH/USDT

A peer-to-peer electronic cash system

BNB

Binance Coin

BNB/USDT

Native token of the Binance ecosystem

DOT

Polkadot

DOT/USDT

A multi-chain blockchain platform enabling interoperability

FIL

Filecoin

FIL/USDT

A decentralized storage network

LINK

Chainlink

LINK/USDT

A decentralized oracle network

LTC

Litecoin

LTC/USDT

A peer-to-peer cryptocurrency and payment network

MATIC

Polygon

MATIC/USDT

A layer-2 scaling solution for Ethereum

UNI

Uniswap

UNI/USDT

A decentralized exchange protocol

XRP

XRP

XRP/USDT

A digital payment protocol for cross-border transactions

개발자를 위한 강력한 기능

Real-time Data

Get live crypto prices updated every second with minimal latency

Historical Prices

Access historical price data with customizable time intervals

99.9% Uptime

Enterprise-grade reliability with guaranteed uptime SLA

Low Latency

Sub-100ms response times for all API requests worldwide

GraphQL Queries

Flexible queries to fetch exactly the data you need in one request

Multiple Tokens

Query prices for multiple cryptocurrencies in a single API call

Rich Data Points

Price, volume, 24h change, highs, lows, and OHLC data

Free Tier Available

Get started with our generous free tier for development

빠른 통합

간단한 API를 사용하여 몇 분 만에 시작하세요

// Get latest prices for multiple tokens
const response = await fetch("https://blockeden.xyz/api-marketplace/crypto-price", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_KEY"
},
body: JSON.stringify({
query: `
query GetLatestPrices {
latestPrices(symbols: ["BTCUSDT", "ETHUSDT", "SOLUSDT"]) {
symbol
price
change24h
volume24h
high24h
low24h
}
}
`
})
});
const data = await response.json();
console.log(data);

// Get price history for charts
const historyResponse = await fetch("https://blockeden.xyz/api-marketplace/crypto-price", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_KEY"
},
body: JSON.stringify({
query: `
query GetPriceHistory {
priceHistory(symbol: "BTCUSDT", interval: "1h") {
hour
openPrice
closePrice
highPrice
lowPrice
avgPrice
volume
}
}
`
})
});
const historyData = await historyResponse.json();
console.log(historyData);

API 엔드포인트

모든 암호화폐 가격 데이터 요구 사항에 대응하는 유연한 GraphQL 쿼리

POSTGraphQL Query: latestPrices

Get current prices for one or more cryptocurrency symbols

Query & Response:
# GraphQL Query
query GetLatestPrices {
latestPrices(symbols: ["BTCUSDT", "ETHUSDT"]) {
symbol
price
change24h
volume24h
high24h
low24h
}
}

# Response
{
"data": {
"latestPrices": [
{
"symbol": "BTCUSDT",
"price": 43500.25,
"change24h": 2.34,
"volume24h": 28500000000,
"high24h": 44100.00,
"low24h": 42800.50
}
]
}
}
POSTGraphQL Query: priceHistory

Get historical price data with OHLC (Open, High, Low, Close) values

Query & Response:
# GraphQL Query
query GetPriceHistory {
priceHistory(symbol: "BTCUSDT", interval: "1h") {
hour
openPrice
closePrice
highPrice
lowPrice
avgPrice
volume
}
}

# Response
{
"data": {
"priceHistory": [
{
"hour": "2025-12-13T10:00:00Z",
"openPrice": 43200.00,
"closePrice": 43500.25,
"highPrice": 43650.00,
"lowPrice": 43150.00,
"avgPrice": 43375.50,
"volume": 1250000000
}
]
}
}

기술 사양

Update Frequency

Real-time (1-2 seconds)

Prices updated continuously with minimal delay

Authentication

Bearer Token

Authorization header with API key for secure access

API Type

GraphQL

Flexible queries via POST with JSON responses

지금 바로 Web3의 미래를 구축하세요

BlockEden.xyz는 개발자가 혁신적인 블록체인 애플리케이션을 만드는 데 필요한 모든 것(강력한 API, 포괄적인 도구, 전문가 지원 및 활발한 커뮤니티)을 제공합니다.