Etsy · Capability

Etsy Open API v3 — BuyerTaxonomy

Etsy Open API v3 — BuyerTaxonomy. 2 operations. Lead operation: Get Buyer Taxonomy Nodes. Self-contained Naftiko capability covering one Etsy business surface.

Run with Naftiko EtsyOpen API v3BuyerTaxonomy

What You Can Do

GET
Getbuyertaxonomynodes — Get Buyer Taxonomy Nodes
/v1/buyer-taxonomy/nodes
GET
Getpropertiesbybuyertaxonomyid — Get Properties by Buyer Taxonomy Id
/v1/buyer-taxonomy/nodes/{taxonomy_id}/properties

MCP Tools

get-buyer-taxonomy-nodes

Get Buyer Taxonomy Nodes

read-only idempotent
get-properties-buyer-taxonomy-id

Get Properties by Buyer Taxonomy Id

read-only idempotent

Capability Spec

open-api-v3-buyer-taxonomy.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Etsy Open API v3 — BuyerTaxonomy
  description: 'Etsy Open API v3 — BuyerTaxonomy. 2 operations. Lead operation: Get Buyer Taxonomy Nodes. Self-contained Naftiko capability covering one Etsy business surface.'
  tags:
    - Etsy
    - Open API v3
    - BuyerTaxonomy
  created: '2026-05-30'
  modified: '2026-05-30'
binds:
  - namespace: env
    keys:
      ETSY_API_KEY: ETSY_API_KEY
      ETSY_OAUTH_TOKEN: ETSY_OAUTH_TOKEN
capability:
  consumes:
    - type: http
      namespace: open-api-v3-buyer-taxonomy
      baseUri: https://openapi.etsy.com
      description: Etsy Open API v3 — BuyerTaxonomy business capability. Self-contained, no shared references.
      authentication:
        type: apikey
        key: x-api-key
        value: '{{env.ETSY_API_KEY}}'
        placement: header
      resources:
        - name: buyer-taxonomy-nodes
          path: /v3/application/buyer-taxonomy/nodes
          operations:
            - name: getBuyerTaxonomyNodes
              method: GET
              description: Get Buyer Taxonomy Nodes
              inputParameters: []
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: buyer-taxonomy-nodes-properties
          path: /v3/application/buyer-taxonomy/nodes/{taxonomy_id}/properties
          operations:
            - name: getPropertiesByBuyerTaxonomyId
              method: GET
              description: Get Properties by Buyer Taxonomy Id
              inputParameters:
                - name: taxonomy_id
                  in: path
                  type: integer
                  required: true
                  description: 'The unique numeric ID of an Etsy taxonomy node, which is a metadata category for listings organized into the seller taxonomy hierarchy tree. For example, the "shoes" taxonomy node (ID: 1429, level: 1)'
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
  exposes:
    - type: rest
      namespace: open-api-v3-buyer-taxonomy-rest
      port: 8080
      description: REST adapter for Etsy Open API v3 — BuyerTaxonomy. One Spectral-compliant resource per consumed operation, prefixed with /v1.
      resources:
        - path: /v1/buyer-taxonomy/nodes
          name: buyer-taxonomy-nodes
          description: REST surface for buyer-taxonomy-nodes.
          operations:
            - method: GET
              name: getBuyerTaxonomyNodes
              description: Get Buyer Taxonomy Nodes
              call: open-api-v3-buyer-taxonomy.getBuyerTaxonomyNodes
              with: {}
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/buyer-taxonomy/nodes/{taxonomy_id}/properties
          name: buyer-taxonomy-nodes-properties
          description: REST surface for buyer-taxonomy-nodes-properties.
          operations:
            - method: GET
              name: getPropertiesByBuyerTaxonomyId
              description: Get Properties by Buyer Taxonomy Id
              call: open-api-v3-buyer-taxonomy.getPropertiesByBuyerTaxonomyId
              with:
                taxonomy_id: rest.taxonomy_id
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: open-api-v3-buyer-taxonomy-mcp
      port: 9090
      transport: http
      description: MCP adapter for Etsy Open API v3 — BuyerTaxonomy. One tool per consumed operation, routed inline through this capability's consumes block.
      tools:
        - name: get-buyer-taxonomy-nodes
          description: Get Buyer Taxonomy Nodes
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: open-api-v3-buyer-taxonomy.getBuyerTaxonomyNodes
          with: {}
          outputParameters:
            - type: object
              mapping: $.
        - name: get-properties-buyer-taxonomy-id
          description: Get Properties by Buyer Taxonomy Id
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: open-api-v3-buyer-taxonomy.getPropertiesByBuyerTaxonomyId
          with:
            taxonomy_id: tools.taxonomy_id
          outputParameters:
            - type: object
              mapping: $.