Skip to main content
GET
/
api
/
v2
/
trigger
/
orders
GET /api/v2/trigger/orders — List trigger orders
curl --request GET \
  --url https://api.shuriken.trade/api/v2/trigger/orders \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "orders": [
      {
        "amount": "<string>",
        "createdAt": "<string>",
        "inputToken": "<string>",
        "orderId": "<string>",
        "outputToken": "<string>",
        "status": "<string>",
        "updatedAt": "<string>",
        "chain": "<string>",
        "trigger": {
          "direction": "<string>",
          "metric": "<string>",
          "trailingPercentage": 123,
          "value": "<string>"
        }
      }
    ],
    "nextCursor": "<string>"
  },
  "requestId": "<string>",
  "pagination": {
    "hasMore": true,
    "limit": 1,
    "page": 1,
    "total": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.shuriken.trade/llms.txt

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

Authorizations

Authorization
string
header
required

Use Authorization: Bearer <jwt> for user auth or Authorization: Bearer sk_{keyId}_{secret} for API key auth.

Query Parameters

limit
integer<int32>

Results per page (default: 20, max: 100)

Required range: x >= 0
cursor
string

Opaque cursor for forward pagination (from previous response's nextCursor)

Response

200 - application/json

List of trigger orders

V2 success response envelope

data
object
required
requestId
string
required
pagination
object

Page-based pagination info (per RFC)