Urban Outfitters · JSON Structure

Marketplace Api Seller Product List Response Structure

Paginated seller product listings

Type: object Properties: 4
RetailFashionApparelEcommerceAffiliateMarketplaceFortune 1000

SellerProductListResponse is a JSON Structure definition published by Urban Outfitters, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

total offset limit products

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/urban-outfitters/refs/heads/main/json-structure/marketplace-api-seller-product-list-response-structure.json",
  "name": "SellerProductListResponse",
  "description": "Paginated seller product listings",
  "type": "object",
  "properties": {
    "total": {
      "type": "int32",
      "example": 150
    },
    "offset": {
      "type": "int32",
      "example": 0
    },
    "limit": {
      "type": "int32",
      "example": 50
    },
    "products": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SellerProduct"
      }
    }
  }
}