Skip to main content
GET
/
orders
Get orders
curl --request GET \
  --url https://v2.55-tech.com/orders \
  --header 'x-api-key: <api-key>'
import requests

url = "https://v2.55-tech.com/orders"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};

fetch('https://v2.55-tech.com/orders', 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://v2.55-tech.com/orders",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://v2.55-tech.com/orders"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://v2.55-tech.com/orders")
.header("x-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://v2.55-tech.com/orders")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "orders": [
    {
      "orderId": 371,
      "requestUuid": "9eb7d99a-ab9b-41f3-9a06-23e70006bbe5",
      "allowedBookmakers": "*",
      "fixtureId": "id1000004461512432",
      "outcomeId": 103,
      "playerId": 0,
      "orderPrice": 1.95,
      "orderStake": 50,
      "filledStake": 0,
      "userRef": "bettor1234",
      "testOrder": false,
      "orderCurrency": "USD",
      "back": true,
      "expiresAt": "2026-02-07T16:15:53.270816+00:00",
      "acceptBetterOdds": true,
      "acceptPartialStake": true,
      "clientName": "demo",
      "orderStatus": "PENDING",
      "createdAt": "2026-02-07T16:15:48.270816+00:00",
      "updatedAt": "2026-02-07T16:15:48.270816+00:00",
      "meta": null,
      "bets": [],
      "fixtureInfo": {
        "fixtureId": "id1000004461512432",
        "status": {
          "live": false,
          "statusId": 0,
          "statusName": "Pre-Game"
        },
        "sport": {
          "sportId": 10,
          "sportName": "Soccer"
        },
        "tournament": {
          "tournamentId": 44,
          "tournamentName": "2. Bundesliga",
          "categoryName": "Germany"
        },
        "startTime": 1754159400,
        "participants": {
          "participant1Id": 2540,
          "participant1Name": "Arminia Bielefeld",
          "participant2Id": 2588,
          "participant2Name": "Fortuna Dusseldorf"
        }
      },
      "outcomeInfo": {
        "marketId": 101,
        "marketName": "Full Time Result",
        "marketNameShort": "1X2",
        "marketType": "1x2",
        "period": "fulltime",
        "playerProp": false,
        "handicap": 0,
        "outcomeId": 103,
        "outcomeName": "2"
      },
      "playerInfo": null,
      "currencyInfo": {
        "currency": "USD",
        "currencyValue": 1,
        "updatedAt": "2026-02-07T17:29:32+00:00"
      }
    },
    {
      "orderId": 372,
      "requestUuid": "be81ba8f-55f4-48ed-a6f9-69b8d920263b",
      "allowedBookmakers": "sharpbet",
      "fixtureId": "id1000004461512432",
      "outcomeId": 103,
      "playerId": 0,
      "orderPrice": 2.65,
      "orderStake": 10,
      "filledStake": 10,
      "userRef": "bettor1234",
      "testOrder": false,
      "orderCurrency": "USD",
      "back": true,
      "expiresAt": "2026-02-07T16:18:34.366795+00:00",
      "acceptBetterOdds": true,
      "acceptPartialStake": true,
      "clientName": "demo",
      "orderStatus": "FILLED",
      "createdAt": "2026-02-07T16:18:29.366795+00:00",
      "updatedAt": "2026-02-07T16:18:29.366795+00:00",
      "meta": null,
      "bets": [
        {
          "betId": 91,
          "orderId": 372,
          "bookmaker": "sharpbet",
          "bookmakerBetId": "63aeba8d-a2d6-49ba-a6cd-7ce70bb17701",
          "placedPrice": 2.65,
          "placedStake": 10,
          "placedCurrency": "USD",
          "placedAt": "2026-02-07T16:18:29.300906+00:00",
          "betStatus": "CONFIRMED",
          "settlementStatus": "UNSETTLED",
          "clientName": "demo",
          "testBet": false,
          "userRef": "bettor1234",
          "requestUuid": "be81ba8f-55f4-48ed-a6f9-69b8d920263b",
          "declineReason": null
        }
      ],
      "fixtureInfo": {
        "fixtureId": "id1000004461512432",
        "status": {
          "live": false,
          "statusId": 0,
          "statusName": "Pre-Game"
        },
        "sport": {
          "sportId": 10,
          "sportName": "Soccer"
        },
        "tournament": {
          "tournamentId": 44,
          "tournamentName": "2. Bundesliga",
          "categoryName": "Germany"
        },
        "startTime": 1754159400,
        "participants": {
          "participant1Id": 2540,
          "participant1Name": "Arminia Bielefeld",
          "participant2Id": 2588,
          "participant2Name": "Fortuna Dusseldorf"
        }
      },
      "outcomeInfo": {
        "marketId": 101,
        "marketName": "Full Time Result",
        "marketNameShort": "1X2",
        "marketType": "1x2",
        "period": "fulltime",
        "playerProp": false,
        "handicap": 0,
        "outcomeId": 103,
        "outcomeName": "2"
      },
      "playerInfo": null,
      "currencyInfo": {
        "currency": "USD",
        "currencyValue": 1,
        "updatedAt": "2026-02-07T17:29:32+00:00"
      }
    }
  ],
  "count": 2,
  "hasMore": false,
  "nextCursor": null
}

Authorizations

x-api-key
string
header
required

API key for authentication. Contact contact@55-tech.com to obtain a key.

Query Parameters

orderIds
string | null

Comma-separated order IDs (e.g., '123,456,789')

requestUuids
string | null

Comma-separated request UUIDs

userRef
string | null

User reference to filter by

afterOrderId
integer | null

Cursor for pagination: fetch orders with orderId less than this value

limit
integer
default:50

Maximum number of orders to return per page

Required range: 1 <= x <= 1000

Response

Successfully retrieved matching orders with enriched metadata

orders
object[]

List of enriched orders with bets and metadata

count
integer

Number of orders in this response

hasMore
boolean

Whether more orders are available

nextCursor
integer | null

Pass as afterOrderId to fetch the next page