메인 콘텐츠로 건너뛰기
GET
/
kline
Kline(캔들스틱) 데이터 조회
curl --request GET \
  --url https://launch-history-v1.raydium.io/kline
import requests

url = "https://launch-history-v1.raydium.io/kline"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://launch-history-v1.raydium.io/kline', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://launch-history-v1.raydium.io/kline",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://launch-history-v1.raydium.io/kline"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://launch-history-v1.raydium.io/kline")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://launch-history-v1.raydium.io/kline")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body

쿼리 매개변수

poolId
string
필수

풀 ID (민트 주소)

interval
enum<string>
필수
사용 가능한 옵션:
1m,
5m,
15m
limit
integer
기본값:300
필수 범위: 1 <= x <= 500
nextPageKey
string

페이지네이션 토큰

응답

200

페이지네이션이 포함된 Kline 데이터