Zalando attribute-values API

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

Operations 2

GET /partners/{businessPartnerId}/attribute-types/{typeLabel}/attributes List attribute values for an attribute type
GET /partners/{businessPartnerId}/attribute-types/{typeLabel}/attributes/{attributeLabel} Get a single attribute value

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-values-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-values-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Article Requirements Attribute Values 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-values
paths:
  /partners/{businessPartnerId}/attribute-types/{typeLabel}/attributes:
    get:
      summary: List attribute values for an attribute type
      description: Returns all attribute values for the given attribute type label.
      tags:
      - attribute-values
      parameters:
      - name: businessPartnerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: typeLabel
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of attribute values
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttributeValuesListResponse'
        '404':
          description: Attribute type not found
  /partners/{businessPartnerId}/attribute-types/{typeLabel}/attributes/{attributeLabel}:
    get:
      summary: Get a single attribute value
      description: Returns the attribute value with the given label for the given attribute type.
      tags:
      - attribute-values
      parameters:
      - name: businessPartnerId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: typeLabel
        in: path
        required: true
        schema:
          type: string
      - name: attributeLabel
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The requested attribute value
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttributeValueResponse'
        '404':
          description: Attribute type or attribute value not found
components:
  schemas:
    AttributeValueResponse:
      type: object
      required:
      - label
      - name
      properties:
        label:
          type: string
        name:
          type: object
          description: Locale-keyed display names
          additionalProperties:
            type: string
          example:
            en-gb: waterproof_7825
        value:
          type:
          - object
          - 'null'
          description: Optional free-form value payload
          additionalProperties: true
          example:
            localized:
              en: 3 ATM
              de: 3 ATM
              fr: 3 ATM
    AttributeValuesListResponse:
      type: object
      required:
      - items
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/AttributeValueResponse'
          example:
          - label: waterproof_210
            name:
              en-gb: waterproof_210
            value:
              localized:
                en: 'yes'
                de: ja
                fr: oui
          - label: waterproof_209
            name:
              en-gb: waterproof_209
            value:
              localized:
                en: 'no'
                de: nein
                fr: non
          - label: waterproof_7825
            name:
              en-gb: waterproof_7825
            value:
              localized:
                en: 3 ATM
                de: 3 ATM
                fr: 3 ATM