curl --request POST \
--url https://api.fairground.fi/order_service.v1.OrderService/GetOrder \
--header 'Authorization: Bearer <token>' \
--header 'Connect-Protocol-Version: <connect-protocol-version>' \
--header 'Content-Type: application/json' \
--data '
{
"orderId": "<string>",
"market": {
"marketId": "<string>"
},
"reduceOnly": true
}
'import requests
url = "https://api.fairground.fi/order_service.v1.OrderService/GetOrder"
payload = {
"orderId": "<string>",
"market": { "marketId": "<string>" },
"reduceOnly": True
}
headers = {
"Connect-Protocol-Version": "<connect-protocol-version>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Connect-Protocol-Version': '<connect-protocol-version>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({orderId: '<string>', market: {marketId: '<string>'}, reduceOnly: true})
};
fetch('https://api.fairground.fi/order_service.v1.OrderService/GetOrder', 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://api.fairground.fi/order_service.v1.OrderService/GetOrder",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'orderId' => '<string>',
'market' => [
'marketId' => '<string>'
],
'reduceOnly' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Connect-Protocol-Version: <connect-protocol-version>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.fairground.fi/order_service.v1.OrderService/GetOrder"
payload := strings.NewReader("{\n \"orderId\": \"<string>\",\n \"market\": {\n \"marketId\": \"<string>\"\n },\n \"reduceOnly\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Connect-Protocol-Version", "<connect-protocol-version>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.fairground.fi/order_service.v1.OrderService/GetOrder")
.header("Connect-Protocol-Version", "<connect-protocol-version>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"orderId\": \"<string>\",\n \"market\": {\n \"marketId\": \"<string>\"\n },\n \"reduceOnly\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fairground.fi/order_service.v1.OrderService/GetOrder")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Connect-Protocol-Version"] = '<connect-protocol-version>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"orderId\": \"<string>\",\n \"market\": {\n \"marketId\": \"<string>\"\n },\n \"reduceOnly\": true\n}"
response = http.request(request)
puts response.read_body{
"order": {
"owner": "0x71c7656ec7ab88b098defb751b7401b5f6d8976",
"orderId": "48213",
"timestamp": "2026-06-18T14:32:07Z",
"marketId": "1",
"market": "BTC-PERP",
"type": "ORDER_TYPE_MARKET",
"side": "SIDE_LONG",
"thresholdPrice": 65000.5,
"size": 6000,
"leverage": 5,
"status": "ORDER_STATUS_PARTIALLY_FILLED",
"filledSize": 4000,
"unfilledSize": 6000,
"reduceOnly": false,
"canceled": false,
"initialMargin": 2000,
"tickDecimals": 1,
"fees": 2.7,
"rebates": 0,
"reduceOrderType": "",
"initialNotional": 10000,
"stopLossPrice": 60000,
"takeProfitPrice": 72000
}
}GetOrder
Returns the current stored state of one order, identified by the
composite key order_id + market + reduce_only. Order IDs are not
globally unique: the same numeric ID can exist as both a
position-opening order and a reduce-only order in the same market, so
reduce_only must match the kind of order you’re looking up.
curl --request POST \
--url https://api.fairground.fi/order_service.v1.OrderService/GetOrder \
--header 'Authorization: Bearer <token>' \
--header 'Connect-Protocol-Version: <connect-protocol-version>' \
--header 'Content-Type: application/json' \
--data '
{
"orderId": "<string>",
"market": {
"marketId": "<string>"
},
"reduceOnly": true
}
'import requests
url = "https://api.fairground.fi/order_service.v1.OrderService/GetOrder"
payload = {
"orderId": "<string>",
"market": { "marketId": "<string>" },
"reduceOnly": True
}
headers = {
"Connect-Protocol-Version": "<connect-protocol-version>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Connect-Protocol-Version': '<connect-protocol-version>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({orderId: '<string>', market: {marketId: '<string>'}, reduceOnly: true})
};
fetch('https://api.fairground.fi/order_service.v1.OrderService/GetOrder', 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://api.fairground.fi/order_service.v1.OrderService/GetOrder",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'orderId' => '<string>',
'market' => [
'marketId' => '<string>'
],
'reduceOnly' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Connect-Protocol-Version: <connect-protocol-version>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.fairground.fi/order_service.v1.OrderService/GetOrder"
payload := strings.NewReader("{\n \"orderId\": \"<string>\",\n \"market\": {\n \"marketId\": \"<string>\"\n },\n \"reduceOnly\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Connect-Protocol-Version", "<connect-protocol-version>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.fairground.fi/order_service.v1.OrderService/GetOrder")
.header("Connect-Protocol-Version", "<connect-protocol-version>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"orderId\": \"<string>\",\n \"market\": {\n \"marketId\": \"<string>\"\n },\n \"reduceOnly\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fairground.fi/order_service.v1.OrderService/GetOrder")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Connect-Protocol-Version"] = '<connect-protocol-version>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"orderId\": \"<string>\",\n \"market\": {\n \"marketId\": \"<string>\"\n },\n \"reduceOnly\": true\n}"
response = http.request(request)
puts response.read_body{
"order": {
"owner": "0x71c7656ec7ab88b098defb751b7401b5f6d8976",
"orderId": "48213",
"timestamp": "2026-06-18T14:32:07Z",
"marketId": "1",
"market": "BTC-PERP",
"type": "ORDER_TYPE_MARKET",
"side": "SIDE_LONG",
"thresholdPrice": 65000.5,
"size": 6000,
"leverage": 5,
"status": "ORDER_STATUS_PARTIALLY_FILLED",
"filledSize": 4000,
"unfilledSize": 6000,
"reduceOnly": false,
"canceled": false,
"initialMargin": 2000,
"tickDecimals": 1,
"fees": 2.7,
"rebates": 0,
"reduceOrderType": "",
"initialNotional": 10000,
"stopLossPrice": 60000,
"takeProfitPrice": 72000
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Define the version of the Connect protocol. If omitted, use 1.
1 Define the timeout, in ms
Body
On-chain order identifier to look up. Required; must be combined
with market and reduce_only to uniquely identify the order.
Market the order belongs to, by market_id or market_symbol.
Required; an unresolvable selector returns NOT_FOUND.
- market_id
- market_symbol
Show child attributes
Show child attributes
Whether to look up a reduce-only order (true) or a
position-opening order (false) for this order_id. Defaults
to false when omitted.
Response
Success
Current stored state of a position-opening or reduce-only order.
Because both order kinds share this message, some numeric fields have
different meanings and units. Use reduceOnly when interpreting them.
Show child attributes
Show child attributes