Skip to main content
GET
https://backend.anglera.com
/
attributes
/
{sheet_id}
List Attributes
curl --request GET \
  --url https://backend.anglera.com/attributes/{sheet_id} \
  --header 'X-Anglera-API-Key: <api-key>'
{
  "attributes": [
    {
      "id": 123,
      "key": "<string>",
      "name": "<string>",
      "prompt": {},
      "external_id": {},
      "type": "<string>",
      "config": {},
      "enrich": true,
      "index": 123,
      "mappable": true
    }
  ]
}
Returns detailed information about all attributes configured for a specific sheet, including type, configuration, enrichment settings, and whether the attribute is mappable.

Request

curl "https://backend.anglera.com/attributes/100" \
  -H "X-Anglera-API-Key: your_api_key"

Path Parameters

sheet_id
integer
required
ID of the sheet to fetch attributes for

Query Parameters

external_id
string
Filter attributes by external system identifier. When provided, only attributes matching this external_id are returned.

Response

attributes
array
List of attributes configured for the sheet
Example Response
{
  "attributes": [
    {
      "id": 42,
      "key": "color",
      "name": "Color",
      "prompt": "The primary color of the product",
      "external_id": null,
      "type": "ENUM",
      "config": {
        "allowed_values": ["Red", "Blue", "Green"]
      },
      "enrich": true,
      "index": 0,
      "mappable": false
    },
    {
      "id": 43,
      "key": "brand_name",
      "name": "Brand Name",
      "prompt": "The manufacturer or brand of the product",
      "external_id": "ext_brand_123",
      "type": "STRING",
      "config": {},
      "enrich": true,
      "index": 1,
      "mappable": true
    },
    {
      "id": 44,
      "key": "key_features",
      "name": "Key Features",
      "prompt": "Main features and benefits of the product",
      "external_id": null,
      "type": "ARRAY",
      "config": {},
      "enrich": true,
      "index": 2,
      "mappable": false
    }
  ]
}
Attributes with mappable: true can be used as keys in mapped_data when calling the Add Product for Enrichment endpoint.