Urban Outfitters · Capability

Urban Outfitters Marketplace API — Products

Urban Outfitters Marketplace API — Products. 2 operations. Lead operation: Urban Outfitters List Seller Products. Self-contained Naftiko capability covering one Urban Outfitters business surface.

Run with Naftiko Urban OutfittersProducts

What You Can Do

GET
Listsellerproducts — Urban Outfitters List Seller Products
/v1/v1/products
POST
Createsellerproduct — Urban Outfitters Create Seller Product
/v1/v1/products

MCP Tools

urban-outfitters-list-seller-products

Urban Outfitters List Seller Products

read-only idempotent
urban-outfitters-create-seller-product

Urban Outfitters Create Seller Product

Capability Spec

marketplace-products.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Urban Outfitters Marketplace API — Products
  description: 'Urban Outfitters Marketplace API — Products. 2 operations. Lead operation: Urban Outfitters List Seller Products.
    Self-contained Naftiko capability covering one Urban Outfitters business surface.'
  tags:
  - Urban Outfitters
  - Products
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    URBAN_OUTFITTERS_API_KEY: URBAN_OUTFITTERS_API_KEY
capability:
  consumes:
  - type: http
    namespace: marketplace-products
    baseUri: https://marketplace.urbanoutfitters.com/api
    description: Urban Outfitters Marketplace API — Products business capability. Self-contained, no shared references.
    resources:
    - name: v1-products
      path: /v1/products
      operations:
      - name: listsellerproducts
        method: GET
        description: Urban Outfitters List Seller Products
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
          description: Filter products by status
        - name: limit
          in: query
          type: integer
          description: Maximum products to return
        - name: offset
          in: query
          type: integer
          description: Pagination offset
      - name: createsellerproduct
        method: POST
        description: Urban Outfitters Create Seller Product
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-Seller-API-Key
      value: '{{env.URBAN_OUTFITTERS_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: marketplace-products-rest
    port: 8080
    description: REST adapter for Urban Outfitters Marketplace API — Products. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v1/products
      name: v1-products
      description: REST surface for v1-products.
      operations:
      - method: GET
        name: listsellerproducts
        description: Urban Outfitters List Seller Products
        call: marketplace-products.listsellerproducts
        with:
          status: rest.status
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createsellerproduct
        description: Urban Outfitters Create Seller Product
        call: marketplace-products.createsellerproduct
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: marketplace-products-mcp
    port: 9090
    transport: http
    description: MCP adapter for Urban Outfitters Marketplace API — Products. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: urban-outfitters-list-seller-products
      description: Urban Outfitters List Seller Products
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: marketplace-products.listsellerproducts
      with:
        status: tools.status
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: urban-outfitters-create-seller-product
      description: Urban Outfitters Create Seller Product
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: marketplace-products.createsellerproduct
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.