Kairos Timeboost
  • Introduction
  • A Quick Overview of Timeboost
  • Our Express Lane Sub-Auction
  • Submission API
    • timeboost_sendTransaction
    • timeboost_sendBundle
  • Stats APIs
    • Express Lane Status Endpoint
    • Get Order Info
    • Round Sequence
    • Auction stream
  • Resources & Endpoints
Powered by GitBook
On this page
  • Sample Request
  • CURL Example
  • Sample Response
  1. Stats APIs

Get Order Info

Use this endpoint to trace a transaction/bundle based on a UUID.

A UUID is returned in the response when a transaction/bundle is submitted. This UUID can then be used to query detailed information about the specific submission.

Sample Request

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "timeboost_getOrderInfo",
  "params": [
      // String
      // UUID that was returned to you when you send the submission.
      "123e4567-e89b-12d3-a456-426614174000",           
  ]
}

CURL Example

curl -X POST \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "timeboost_getOrderInfo",
    "params": ["123e4567-e89b-12d3-a456-426614174000"],
    "id": 1
  }' \
  https://rpc.kairos-timeboost.xyz/stats

Sample Response

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "uuid": "123e4567-e89b-12d3-a456-426614174000",
    "tx_hash": "",
    "sender": "",
    "recv_ts": "2024-03-20T10:00:00Z",
    "round": 1000,
    "seq": 1,
    "success": true,
    "seq_ts": "2024-03-20T10:00:05Z",
    "express_lane_controller": true
  }
}

If the uuid is not found, response will be: {"jsonrpc":"2.0","id":1,"result":null}.

PreviousExpress Lane Status EndpointNextRound Sequence

Last updated 18 days ago