Skip to main content
GET
/
orders
Get orders
curl --request GET \
  --url https://v2.55-tech.com/orders \
  --header 'X-API-Key: <api-key>'
{
  "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
      }
    },
    {
      "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
      }
    }
  ],
  "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