GET
/
v1
/
products
Products
curl --request GET \
  --url https://api.partbot.io/v1/products \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'
{
  "products": [
    {
      "sku": "DEV-PART-3",
      "title": "Development Part 3",
      "barcode": null,
      "product_code": null,
      "product_category": null,
      "product_type": "Development Product Type",
      "sub_brand": null,
      "brand": {
        "id": 457,
        "name": "Development Brand"
      },
      "price": {
        "amount": "1000.0",
        "currency": "AUD",
        "currency_symbol": "$"
      },
      "created_at": "2025-07-09T00:32:52.221+10:00",
      "updated_at": "2025-08-27T13:43:25.761+10:00"
    }
  ],
  "pagination": {
    "current_page": 1,
    "total_pages": 1,
    "total_count": 9,
    "per_page": 50
  }
}

Headers

Authorization
string
required
Content-Type
string
required

Query Parameters

brand_id
string

Filter products by brand ID

sku
string

Filter products by SKU

product_type
string

Filter products by product type

page
integer

Page index for pagination

Required range: x >= 1
per_page
integer
default:50

Number of items per page (max 100, default 50)

Required range: 1 <= x <= 100

Response

200 - application/json

OK

products
object[]
pagination
object