Skip to main content
GET
/
limit-order
/
history
/
event
/
list-by-pda
List the on-chain event log for one or more limit-order PDAs
curl --request GET \
  --url https://temp-api-v1.raydium.io/limit-order/history/event/list-by-pda
{
  "success": true,
  "data": {
    "rows": [
      {
        "pda": "<string>",
        "txid": "<string>",
        "slot": 123,
        "blockTime": 123,
        "poolId": "<string>",
        "mintA": "<string>",
        "mintB": "<string>",
        "zeroForOne": true,
        "tick": 123,
        "price": 123,
        "autoRunner": true,
        "type": "open",
        "inputAmountChangeUi": 123,
        "inputAmountValuePreUi": 123,
        "inputAmountValuePostUi": 123,
        "outputAmountChangeUi": 123,
        "outputAmountValuePreUi": 123,
        "outputAmountValuePostUi": 123
      }
    ],
    "nextPageId": "<string>"
  },
  "id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.raydium.io/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

pda
string
required

One or more limit-order PDA public keys, comma-separated. Each must be a valid base58 pubkey.

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/event/list-by-pda.

success
boolean
required
Example:

true

data
object
required
id
string