Skip to main content
GET /api/enrichment/attribute-templates · Scope: catalog:read
Returns every active attribute template for your organization, each with its options. Fetch this before enriching — see the guide.

Request

curl https://api.verzla.com/api/enrichment/attribute-templates \
  -H "X-Api-Client-Key: sk_live_your_key_here"
No parameters. The organization is resolved from your key.

Response 200

Array of templates.
id
number
Template identifier.
name
string
Template name (e.g. Power Tools).
options
object[]
[
  {
    "id": 41,
    "name": "Power Tools",
    "options": [
      {
        "id": 880,
        "attribute": "Voltage",
        "unit": "V",
        "priority": 1,
        "dataType": "NUMBER",
        "showOnWebsite": true,
        "isSearchable": true
      }
    ]
  }
]

Errors

StatusWhen
401Missing or invalid API key
403Key lacks catalog:read