메인 콘텐츠로 건너뛰기
GET
/
limit-order
/
order
/
list
지갑에 현재 등록된 CLMM 지정가 주문 목록 조회
curl --request GET \
  --url https://temp-api-v1.raydium.io/limit-order/order/list
import 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>"
}

쿼리 매개변수

wallet
string
필수

지갑 공개 키 (base58)

예시:

"<your-wallet-pubkey>"

showErr
string

이 파라미터가 있으면 응답에 인덱서의 소프트 실패 메시지를 담은 e 배열도 포함됩니다 (예: 행 처리가 건너뛰어진 원인이 된 누락된 풀 또는 틱 배열 캐시 항목).

응답

Success

/limit-order/order/list의 페이로드.

success
boolean
필수
예시:

true

data
object
필수
id
string

요청 ID (UUID)