메인 콘텐츠로 건너뛰기
GET
/
limit-order
/
history
/
order
/
list-by-user
지갑의 CLMM 지정가 주문 내역 조회
curl --request GET \
  --url https://temp-api-v1.raydium.io/limit-order/history/order/list-by-user
import requests

url = "https://temp-api-v1.raydium.io/limit-order/history/order/list-by-user"

response = requests.get(url)

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

fetch('https://temp-api-v1.raydium.io/limit-order/history/order/list-by-user', 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/history/order/list-by-user",
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/history/order/list-by-user"

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/history/order/list-by-user")
.asString();
require 'uri'
require 'net/http'

url = URI("https://temp-api-v1.raydium.io/limit-order/history/order/list-by-user")

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>",
        "owner": "<string>",
        "poolId": "<string>",
        "mintA": "<string>",
        "mintB": "<string>",
        "zeroForOne": true,
        "tick": 123,
        "price": 123,
        "openBlockTime": 123,
        "orderInputAmountUi": 123,
        "orderOutputAmountUi": 123,
        "filledInputAmountUi": 123,
        "filledOutputAmountUi": 123
      }
    ],
    "nextPageId": "<string>"
  },
  "id": "<string>"
}
{
"success": false,
"msg": "<string>",
"id": "<string>"
}
{
"success": false,
"msg": "<string>",
"id": "<string>"
}

쿼리 매개변수

wallet
string
필수

지갑 공개 키 (base58)

예시:

"<your-wallet-pubkey>"

hideCancel
string

true로 설정하면 한 번도 체결되지 않고 종료된 주문(즉, 취소된 주문)을 제외합니다. 기본값은 false입니다.

poolId
string

특정 CLMM 풀로 필터링하는 옵션입니다. mint1 / mint2와 함께 사용할 수 없습니다.

mint1
string

민트 필터 옵션 (토큰 A 또는 B). poolId와 함께 사용할 수 없습니다.

mint2
string

두 번째 민트 필터 옵션. poolId와 함께 사용할 수 없습니다.

nextPageId
string

이전 페이지에서 반환된 불투명한 페이지네이션 커서 (TTL ~1h).

size
integer
기본값:20

페이지 크기 (1–100, 기본값 20).

응답

Success

/limit-order/history/order/list-by-user 페이로드.

success
boolean
필수
예시:

true

data
object
필수
id
string