Skip to main content
GET
/
alpha
/
merchant
/
orders
List orders
curl --request GET \
  --url https://api.auctionnow.io/api/alpha/merchant/orders \
  --header 'Authorization: <authorization>'
{
  "data": [
    {
      "orderId": "<string>",
      "title": "<string>",
      "_creationTime": 123,
      "status": "<string>",
      "totalAmount": 123,
      "buyerEmail": "<string>",
      "customerId": "<string>",
      "trackingNumber": "<string>",
      "taxCost": 123
    }
  ],
  "timestamp": 123,
  "message": "<string>"
}

Headers

Authorization
string
required

Your Auction Now API key as a Bearer token

Example:

"Bearer ak_XXXXXXX"

Response

A successful response

data
object[]
required

A list of orders

timestamp
number
required
message
string