지갑에 현재 등록된 CLMM 지정가 주문 목록 조회
curl --request GET \
--url https://temp-api-v1.raydium.io/limit-order/order/listimport requests
url = "https://temp-api-v1.raydium.io/limit-order/order/list"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://temp-api-v1.raydium.io/limit-order/order/list', 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://temp-api-v1.raydium.io/limit-order/order/list",
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://temp-api-v1.raydium.io/limit-order/order/list"
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://temp-api-v1.raydium.io/limit-order/order/list")
.asString();require 'uri'
require 'net/http'
url = URI("https://temp-api-v1.raydium.io/limit-order/order/list")
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{
"success": true,
"data": {
"rows": [
{
"pda": "<string>",
"poolId": "<string>",
"owner": "<string>",
"tick": 123,
"price": 123,
"zeroForOne": true,
"orderPhase": "<string>",
"totalAmount": "<string>",
"filledAmount": "<string>",
"openTime": "<string>",
"pendingSettle": "<string>",
"filledAmountUpdate": "<string>",
"mintA": "<string>",
"mintB": "<string>",
"mintDecimalsA": 123,
"mintDecimalsB": 123,
"poolCurrentPrice": 123
}
],
"e": [
"<string>"
]
},
"id": "<string>"
}{
"success": false,
"msg": "<string>",
"id": "<string>"
}{
"success": false,
"msg": "<string>",
"id": "<string>"
}Temporary
지갑에 현재 등록된 CLMM 지정가 주문 목록 조회
wallet이 소유한 온체인 CLMM 지정가 주문 — 완전 미체결 및 부분 체결 주문 모두 하나의 페이로드로 반환됩니다. 각 행은 디코딩된 온체인 LimitOrderState와 풀 키, 그리고 인덱서가 최신 틱 상태로부터 계산한 pendingSettle 금액을 포함합니다.
데이터는 인덱서의 Redis 캐시에서 제공되며 체인보다 몇 초 지연될 수 있습니다.
GET
/
limit-order
/
order
/
list
지갑에 현재 등록된 CLMM 지정가 주문 목록 조회
curl --request GET \
--url https://temp-api-v1.raydium.io/limit-order/order/listimport requests
url = "https://temp-api-v1.raydium.io/limit-order/order/list"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://temp-api-v1.raydium.io/limit-order/order/list', 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://temp-api-v1.raydium.io/limit-order/order/list",
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://temp-api-v1.raydium.io/limit-order/order/list"
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://temp-api-v1.raydium.io/limit-order/order/list")
.asString();require 'uri'
require 'net/http'
url = URI("https://temp-api-v1.raydium.io/limit-order/order/list")
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{
"success": true,
"data": {
"rows": [
{
"pda": "<string>",
"poolId": "<string>",
"owner": "<string>",
"tick": 123,
"price": 123,
"zeroForOne": true,
"orderPhase": "<string>",
"totalAmount": "<string>",
"filledAmount": "<string>",
"openTime": "<string>",
"pendingSettle": "<string>",
"filledAmountUpdate": "<string>",
"mintA": "<string>",
"mintB": "<string>",
"mintDecimalsA": 123,
"mintDecimalsB": 123,
"poolCurrentPrice": 123
}
],
"e": [
"<string>"
]
},
"id": "<string>"
}{
"success": false,
"msg": "<string>",
"id": "<string>"
}{
"success": false,
"msg": "<string>",
"id": "<string>"
}⌘I

