Skip to main content
List orders
curl --request GET \
  --url https://api.maple.inc/v1/orders \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "object": "order",
      "id": "<string>",
      "livemode": true,
      "created": 123,
      "status": "<string>",
      "payment_status": "<string>",
      "location_id": "<string>",
      "fulfillment_type": "<string>",
      "customer": {
        "name": "<string>",
        "phone_last_four": "<string>"
      },
      "line_items": [
        {
          "name": "<string>",
          "menu_entity_id": "<string>",
          "quantity": 123,
          "base_price": 123,
          "tax": 123,
          "modifiers": [
            {
              "name": "<string>",
              "menu_entity_id": "<string>",
              "quantity": 123,
              "price": 123
            }
          ]
        }
      ],
      "totals": {
        "currency": "<string>",
        "subtotal": 123,
        "tax": 123,
        "surcharge": 123,
        "tip": 123,
        "delivery_fee": 123,
        "delivery_tip": 123,
        "total": 123
      },
      "external_id": "<string>",
      "payment": {
        "provider": "<string>",
        "status": "<string>",
        "payment_link_url": "<string>"
      }
    }
  ],
  "has_more": true
}

Authorizations

Authorization
string
header
required

API key — mpk_test_… for the sandbox, mpk_live_… for production. Issued by Maple during partner onboarding.

Response

Success

object
enum<string>
required
Available options:
list
data
object[]
required
has_more
boolean
required