ByeLabel API (v1)
    • ByeLabel API (v1) Document
    • Me
      GET
    • Login
      POST
    • Refresh Token
      POST
    • Balance
      GET
    • Carrier List
      GET
    • Country List
      GET
    • State/Province List
      GET
    • State & City From Postal Code
      POST
    • Calculate Tax
      POST
    • Get Carrier Rates
      POST
    • Create Shipment (Label)
      POST
    • Void Shipment (Label)
      POST
    • End Of Day Open Counts
      GET
    • End Of Day Open Shipments List
      GET
    • Shipment Counts By Status
      GET
    • Shipment List
      GET
    • Shipment Item
      GET
    • Track Shipment
      GET
    • Products Counts By Category
      GET
    • Product List
      GET
    • SSE Events
      GET
    • Schemas
      • Fail Result Schema
      • Success Result Schema
      • HTTP Error Schema
      • Token Schema
      • Tax Identifiers Schema
      • Weight Schema
      • Dimensions Schema
      • Price Schema
      • Sender Schema
      • Recipient Schema
      • Package Schema
      • Package Line Items Schema
      • Product Options Schema
      • Carrier Schema
      • Invoice Schema
      • Printing Options Schema
      • Order Schema
      • Carrier Rate Result Schema
      • Created Shipment Result Schema
      • Document To Print Schema
      • Country Schema
      • State / Province Schema
      • Shipment Activity Schema

      End Of Day Open Shipments List

      GET
      /end-of-day
      List of open shipments

      Request

      Authorization
      Provide your bearer token in the
      Authorization
      header when making requests to protected resources.
      Example:
      Authorization: Bearer ********************
      Query Params

      Header Params

      Responses

      🟢200Success
      application/json
      Body

      🟠401Unauthorized Response
      🔴500Server Error Response
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://api.byelabel.com/v1/end-of-day?date&zip_code&provider' \
      --header 'X-Workspace-Id: ' \
      --header 'Authorization: Bearer <token>'
      Response Response Example
      200 - Success
      {
          "success": true,
          "payload": [
              {
                  "id": "5c629289-7062-4b14-b683-80d3c8154b43",
                  "created_at": "2026-02-11T18:20:46.737Z",
                  "tracking_number": "XXXXXXXXXXX",
                  "provider": {
                      "id": "usps",
                      "code": "usps",
                      "name": "USPS",
                      "service": {
                          "code": "USPS_GROUND_ADVANTAGE",
                          "name": "USPS Ground Advantage"
                      },
                      "packaging": {
                          "code": "package",
                          "name": "Package"
                      }
                  },
                  "from": {
                      "id": "80e3f942-d45d-4f64-a8af-6c6596dbbe0c",
                      "city": "Clifton",
                      "name": "Warehouse",
                      "alias": "Alias",
                      "email": "support@warehouse.com",
                      "phone": "11111111",
                      "state": {
                          "code": "NJ",
                          "name": "New Jersey"
                      },
                      "street": [
                          "280 Getty Ave"
                      ],
                      "company": "Company LLC",
                      "country": {
                          "code": "US",
                          "flag": "🇺🇸",
                          "name": "United States"
                      },
                      "zip_code": "07011",
                      "residential": false
                  },
                  "to": {
                      "city": "Burlington",
                      "name": "John Wick",
                      "email": "email@email.com",
                      "phone": "111111111111",
                      "state": {
                          "code": "WI",
                          "name": "Wisconsin"
                      },
                      "street": [
                          "N5769 Hargraves Rd"
                      ],
                      "company": "",
                      "country": {
                          "code": "US",
                          "flag": "🇺🇸",
                          "name": "United States"
                      },
                      "zip_code": "53105-2717",
                      "residential": true
                  },
                  "items": [
                      {
                          "id": "ae20cbf2-2b96-4e38-96d6-991e353fa343",
                          "code": "a8cf745-B0012D38G2-52c044c",
                          "weight": {
                              "unit": "lb",
                              "value": 1.1
                          },
                          "currency": "USD",
                          "hts_code": "",
                          "quantity": 1,
                          "image_url": "https://images-na.ssl-images-amazon.com/images/I/71uZe4gX6tL.jpg",
                          "description": "Nature's Bounty Calcium Carbonate & Vitamin D, Supports Immune Health & Bone",
                          "country_of_origin": "MX",
                          "unit_selling_price": 20.5,
                          "total_selling_price": 20.5
                      }
                  ],
                  "order_number": "02-14232-87100"
              }
          ],
          "transaction": {
              "id": "8929b6aa9c0e6ec04d4c57ad6e0c256f",
              "response_time": 680.835
          }
      }
      Modified at 2026-02-12 23:10:32
      Previous
      End Of Day Open Counts
      Next
      Shipment Counts By Status
      Built with