Get Order Detail

Get Order Detail by Order UUID

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Get Order Detail

This endpoint retrieves detailed information about a specific order using its unique identifier, the Order UUID. It is part of the Parlay API and requires authentication via a token.

Endpoint

GET /orders/{order_uuid}

Headers

  • Authorization: Bearer token required.
key

Include the Bearer prefix before your access token in the Authorization header. For example: Bearer YOUR_ACCESS_TOKEN. Retrieve your access token from the /auth/login endpoint response.

Description

Fetch detailed information about an order by providing the Order UUID. This endpoint is useful for obtaining comprehensive details about a specific order, including its status, confirmed odds, stake, and any associated bet legs.

Security

  • Token: A valid token is required to access this endpoint.

Parameters

  • order_uuid (path parameter, required): The unique identifier for the order you wish to retrieve.
    • Type: string

Responses

  • 200 OK: The request was successful, and the order details are returned in the response.

    • Content-Type: application/json
    • Schema: Includes order details such as confirmed odds, stake, profit, and bet legs.
  • Default: An error response with details about the failure.

    • Content-Type: application/json
    • Schema: Error details including error code and message.

Tags

  • parlay

Example Request

GET /orders/123e4567-e89b-12d3-a456-426614174000
Authorization: Bearer YOUR_ACCESS_TOKEN

Example Response

{
  "success": true,
  "data": {
    "order_uuid": "123e4567-e89b-12d3-a456-426614174000",
    "confirmed_odds": 1.5,
    "confirmed_stake": 100,
    "profit": 50,
    "legs": [
      {
        "line": 1.5,
        "market_id": 123,
        "outcome_id": 456
      }
    ]
  }
}
Path Params
string
required

Order UUID

Responses

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json