Skip to content
BolderBolder API
Esc
navigateopen⌘Jpreview

List custom product attributes

Returns all unique custom attribute names used across products in this shop.

GET/shops/{shop_id}/custom_product_attributes
Authorization
AuthorizationBearer token (JWT) · headerrequired
Path parameters
shop_idintegerrequired
Responses
200Custom attributes list
Request
curl -X GET "https://api.onbolder.com/v2/shops/1/custom_product_attributes" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "_class": [
    "results",
    "customAttributes"
  ],
  "_embedded": {
    "items": [
      {
        "name": "material"
      },
      {
        "name": "origin"
      }
    ]
  }
}