Zalando attribute-types API

The attribute-types API from Zalando — 2 operation(s) for attribute-types.

Operations 2

GET /partners/{businessPartnerId}/attribute-types List attribute type labels for a business partner
GET /partners/{businessPartnerId}/attribute-types/{typeLabel} Get an attribute type

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/zalando-attribute-types-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

zalando-attribute-types-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Article Requirements Attribute Types API
  version: 1.0.0
  x-audience: external-merchant
  x-api-id: e655a9cb-4cda-466d-a552-13a50c4b02ae
  description: 'This API provides endpoints to retrieve UAF article requirement outlines, attribute types, and attribute values for a given business partner. This API is in pilot phase and only available to a limited set of partners.

    '
tags:
- name: attribute-types
paths:
  /partners/{businessPartnerId}/attribute-types:
    get:
      summary: List attribute type labels for a business partner
      description: Returns all available attribute type labels for the given business partner.
      tags:
      - attribute-types
      parameters:
      - name: businessPartnerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: List of attribute type labels
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttributeTypeLabelsListResponse'
  /partners/{businessPartnerId}/attribute-types/{typeLabel}:
    get:
      summary: Get an attribute type
      description: Returns the attribute type with the given label, applying any partner-specific overrides.
      tags:
      - attribute-types
      parameters:
      - name: businessPartnerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: typeLabel
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The requested attribute type
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttributeTypeResponse'
        '404':
          description: Attribute type not found
components:
  schemas:
    AttributeTypeVariantResponse:
      type: object
      required:
      - label
      - name
      properties:
        label:
          type: string
        name:
          type: object
          description: Locale-keyed display names
          additionalProperties:
            type: string
          example:
            en: Metric
            de: Metrisch
            fr: Métrique
    AttributeTypeResponse:
      type: object
      required:
      - label
      - name
      - description
      - cardinality
      - usage
      - definition
      - type_variants
      properties:
        label:
          type: string
        name:
          type: object
          description: Locale-keyed display names
          additionalProperties:
            type: string
          example:
            en: Our model's height
            de: Modelgröße
            fr: Taille du mannequin
        description:
          type: object
          description: Locale-keyed descriptions
          additionalProperties:
            type: string
          example:
            en: Metric type with value and unit. The unit is restricted to the allowed values for this metric
        cardinality:
          type: string
          enum:
          - one
          - many
          example: one
        usage:
          type: string
          enum:
          - literal
          - reference_by_value
          - reference_by_label
          example: literal
        definition:
          type: object
          description: 'Type-specific definition object. Contains a "type" field indicating the definition kind (e.g. BooleanDefinition, StringDefinition, DecimalDefinition, etc.)

            '
          additionalProperties: true
          example:
            type: StructuredDefinition
            types:
            - label: metric_unit
              optional: false
              version: 1.0.0
              attribute_labels:
              - cm
            - label: metric_value
              optional: false
              version: 1.0.0
        type_variants:
          type: array
          items:
            $ref: '#/components/schemas/AttributeTypeVariantResponse'
    AttributeTypeLabelsListResponse:
      type: object
      required:
      - items
      properties:
        items:
          type: array
          items:
            type: string
          example:
          - brand_code
          - color_code.primary
          - color_code.secondary