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

      Product List

      GET
      /product
      Product list using infinite method. For the next page send the last id of the data item.

      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 -g --request GET 'https://api.byelabel.com/v1/product?filter={"code":"SKU001"}&last_id=&limit=limit=20' \
      --header 'X-Workspace-Id: ' \
      --header 'Authorization: Bearer <token>'
      Response Response Example
      200 - Example 1
      {
          "success": true,
          "payload": {
              "data": [
                  {
                      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
                      "created_at": "2019-08-24T14:15:22.123Z",
                      "updated_at": "2019-08-24T14:15:22.123Z",
                      "active": true,
                      "code_type": "sku",
                      "code": "string",
                      "aliases": [
                          "string"
                      ],
                      "name": "string",
                      "description": "string",
                      "category_id": "string",
                      "image_url": "string",
                      "hts_code": "string",
                      "currency": "string",
                      "unit_selling_price": 0,
                      "country_of_origin": "string",
                      "tags": [
                          "string"
                      ],
                      "weight": {
                          "unit": "lb",
                          "value": 0
                      },
                      "dimensions": {
                          "unit": "in",
                          "length": 0,
                          "width": 0,
                          "height": 0
                      },
                      "override_importing_orders": true
                  }
              ]
          },
          "limit": 0,
          "more": 0,
          "transaction": {
              "id": "string",
              "response_time": 0
          }
      }
      Modified at 2026-02-09 02:58:26
      Previous
      Products Counts By Category
      Next
      SSE Events
      Built with