GET
/
v1
/
orders
/
{order_reference_id}
orders
curl --request GET \
  --url https://sandbox.gateway.sezzle.com/v1/orders/{order_reference_id} \
  --header 'Authorization: <api-key>'
{
  "created_at": "2025-06-19T19:34:57.000Z",
  "captured_at": "2025-06-19T19:35:33.000Z",
  "capture_expiration": "2025-06-26T19:35:15.000Z",
  "description": "Order #1800",
  "amount_in_cents": 12999,
  "usd_amount_in_cents": 12999,
  "customer_amount_in_cents": 12999,
  "currency_code": "USD",
  "customer_currency_code": "USD",
  "reference_id": "ord_12345",
  "shipping_address": {
    "name": "John Doe",
    "street": "123 West Lake street",
    "street2": "104",
    "city": "Minneapolis",
    "state": "MN",
    "postal_code": "55408",
    "country_code": "US"
  },
  "billing_address": {
    "name": "John Doe",
    "street": "123 West Lake street",
    "street2": "104",
    "city": "Minneapolis",
    "state": "MN",
    "postal_code": "55408",
    "country_code": "US"
  },
  "customer": {
    "first_name": "John",
    "last_name": "Doe",
    "email": "john.doe@sezzle.com",
    "phone": "8885401867"
  },
  "refunds": [
    {
      "amount": {
        "amount_in_cents": 500,
        "currency": "USD"
      },
      "refund_id": "7b33e7b6-f112-4844-a3c5-91688a6c00b7",
      "refund_reason": "Item returned by user",
      "is_full_refund": false,
      "order_reference_id": "ord_12345",
      "created_at": "2025-06-19T19:41:09Z"
    }
  ],
  "metadata": {
    "location_id": 123,
    "store_manager": "Jane Doe",
    "store_name": "Downtown Minneapolis"
  },
  "items": [
    {
      "name": "widget",
      "sku": "sku123456",
      "quantity": 1,
      "price": {
        "amount_in_cents": 1000,
        "currency": "USD"
      }
    }
  ],
  "sezzle_order_id": "d1a6c-soq9b-j96fj-14700",
  "checkout_expiration": "2025-06-19T20:04:57.000Z",
  "checkout_status": "completed"
}

You are viewing Version 1 of the Sezzle API. Check out the current version!

Authorizations

Authorization
string
header
required

The authentication token generated from providing API Keys to Sezzle Gateway

Path Parameters

order_reference_id
string
required

The Order Reference ID to update

Query Parameters

include-shipping-info
boolean

If your checkout post data required us to collect shipping information from the customer, then you can request that information alongside the order details.

Response

200
application/json

Successful Operation

The response is of type object.