Skip to main content
GET
/
attributes
curl -X GET "https://hub.banditshq.com/api/v1/attributes?page=1&limit=25&search=color" \
  -H "Authorization: Bearer lasso_..."
{
  "data": [
    {
      "id": "<string>",
      "key": "<string>",
      "label": "<string>",
      "type": "<string>",
      "enum_values": {},
      "tags_values": {},
      "description": {},
      "is_reviewed": true,
      "source_id": {},
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123
  }
}

Query parameters

page
integer
default:"1"
Page number for pagination.
limit
integer
default:"25"
Number of items per page (max 100).
Filter attributes by key substring (case-insensitive).
type
string
Filter by attribute type (e.g. text, enum).

Response

data
array
pagination
object
curl -X GET "https://hub.banditshq.com/api/v1/attributes?page=1&limit=25&search=color" \
  -H "Authorization: Bearer lasso_..."