MCP tool · read 1 credit

thorchain_rujira_range_order_get

Look up a single Rujira range order by numeric id.

JSON-RPC call

Paste this body into your MCP client's `tools/call` request. The `id` field is the JSON-RPC message correlator (caller-chosen, not a record identifier — set it to anything; the server echoes it back).

tools/call body
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "thorchain_rujira_range_order_get",
    "arguments": {
      "id": 1
    }
  }
}

Arguments

Name Type Required Description
id integer required

Copy-paste prompt samples

Drop one of these into Claude Code, n8n, or any MCP client. Your AI agent should pick this tool to answer.

Get the Rujira range order with id 4521.
Show me everything about range order 9999 — owner, pair, ticks.
Look up Rujira range order id 1.

Example response

Illustrative shape — actual values vary.

response shape
{
  "id": 4521,
  "rujira_range_order_id": "17",
  "owner_address_str": "thor1abc...xyz",
  "owner_address": {
    "address": "thor1abc...xyz",
    "name": null,
    "network": {
      "slug": "mainnet-thorchain",
      "name": "THORChain",
      "thorchain_symbol": "THOR"
    }
  },
  "trade_contract": {
    "contract_id": 12,
    "pair_name": "BTC/RUNE",
    "base_symbol": "BTC",
    "quote_symbol": "RUNE"
  },
  "idx": 0,
  "low": "50000",
  "high": "60000",
  "spread": "5",
  "fees_base": "0.0",
  "fees_quote": "0.0",
  "total_invested": "4500000.0",
  "value_usd": "4521234.56"
}

Possible errors

VALIDATION
Returned when the arguments fail the typed schema.
NOT_FOUND
Returned when the requested resource does not exist in our DB.
RATE_LIMIT
Returned when your token's credit budget is exhausted.