Skip to main content
GET
/
limit-order
/
history
/
order
/
list-by-user
List a wallet's historical CLMM limit orders
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>"
}

Query Parameters

wallet
string
required

Wallet public key (base58)

Example:

"<your-wallet-pubkey>"

hideCancel
string

When set to true, exclude orders that closed without ever being filled (i.e. cancelled). Default false.

poolId
string

Optional CLMM pool to filter by. Mutually exclusive with mint1 / mint2.

mint1
string

Optional mint filter (token A or B). Mutually exclusive with poolId.

mint2
string

Optional second mint filter. Mutually exclusive with poolId.

nextPageId
string

Opaque pagination cursor returned by the previous page (TTL ~1h).

size
integer
default:20

Page size (1–100, default 20).

Response

Success

Payload for /limit-order/history/order/list-by-user.

success
boolean
required
Example:

true

data
object
required
id
string