Lista las órdenes límite CLMM históricas de una wallet
curl --request GET \
--url https://temp-api-v1.raydium.io/limit-order/history/order/list-by-userimport 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,
"fillStatus": "NONE",
"orderInputAmountUi": 123,
"orderOutputAmountUi": 123,
"filledInputAmountUi": 123,
"filledOutputAmountUi": 123
}
],
"nextPageId": "<string>"
},
"id": "<string>"
}{
"success": false,
"msg": "<string>",
"id": "<string>"
}{
"success": false,
"msg": "<string>",
"id": "<string>"
}Temporary
Lista las órdenes límite CLMM históricas de una wallet
Devuelve las órdenes límite CLMM cerradas que pertenecen a wallet. Cada fila resume la orden en el momento en que salió del conjunto activo. Paginación por cursor mediante nextPageId.
GET
/
limit-order
/
history
/
order
/
list-by-user
Lista las órdenes límite CLMM históricas de una wallet
curl --request GET \
--url https://temp-api-v1.raydium.io/limit-order/history/order/list-by-userimport 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,
"fillStatus": "NONE",
"orderInputAmountUi": 123,
"orderOutputAmountUi": 123,
"filledInputAmountUi": 123,
"filledOutputAmountUi": 123
}
],
"nextPageId": "<string>"
},
"id": "<string>"
}{
"success": false,
"msg": "<string>",
"id": "<string>"
}{
"success": false,
"msg": "<string>",
"id": "<string>"
}Parámetros de consulta
Clave pública de la wallet (base58)
Ejemplo:
"<your-wallet-pubkey>"
Cuando se establece en true, excluye las órdenes que se cerraron sin haberse ejecutado nunca (es decir, canceladas). Por defecto false.
Pool CLMM opcional por el que filtrar. Mutuamente exclusivo con mint1 / mint2.
Filtro de mint opcional (token A o B). Mutuamente exclusivo con poolId.
Segundo filtro de mint opcional. Mutuamente exclusivo con poolId.
Cursor de paginación opaco devuelto por la página anterior (TTL ~1h).
Tamaño de página (1–100, por defecto 20).
¿Esta página le ayudó?

