Urban Outfitters Products API

Product catalog data for affiliate promotion

Operations 3

GET /v1/products Urban Outfitters Search Products #
POST /v1/products Urban Outfitters Create Seller Product #
GET /v1/products/{product_id} Urban Outfitters Get Product Details #

Documentation

Specifications

Schemas & Data

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/urban-outfitters-products-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

urban-outfitters-products-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Urban Outfitters Products API
  version: 1.0.0
  x-generated-from: documentation
  description: 'Operations tagged Products across 2 of this provider''s published API definitions: urban-outfitters-affiliate-api-openapi.yml, urban-outfitters-marketplace-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.rakutenadvertising.com
  description: Rakuten Advertising API (manages Urban Outfitters affiliate program)
- url: https://marketplace.urbanoutfitters.com/api
  description: Urban Outfitters Marketplace API
security:
- apiKeyAuth: []
tags:
- name: Products
  description: Product catalog data for affiliate promotion
paths:
  /v1/products:
    get:
      operationId: searchProducts
      summary: Urban Outfitters Search Products
      description: Search the Urban Outfitters product catalog for affiliate promotion. Returns product listings with prices, images, and deep link URLs.
      tags:
      - Products
      parameters:
      - name: q
        in: query
        description: Search query string
        schema:
          type: string
        example: graphic tee
      - name: category
        in: query
        description: Product category filter
        schema:
          type: string
          enum:
          - womens
          - mens
          - home
          - accessories
          - beauty
        example: womens
      - name: limit
        in: query
        description: Maximum number of products to return
        schema:
          type: integer
          minimum: 1
          maximum: 100
          default: 20
        example: 20
      - name: offset
        in: query
        description: Pagination offset
        schema:
          type: integer
          minimum: 0
          default: 0
        example: 0
      responses:
        '200':
          description: Product search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductSearchResponse'
              examples:
                searchProducts200Example:
                  summary: Default searchProducts 200 response
                  x-microcks-default: true
                  value:
                    total: 450
                    products:
                    - id: prod-12345
                      name: Graphic Tee - Earth Day
                      price: 29.0
                      currency: USD
                      category: womens
                      imageUrl: https://images.urbndata.com/is/image/UrbanOutfitters/prod-12345
                      affiliateUrl: https://click.linksynergy.com/link?id=affiliate_id&offerid=788395&type=2&murl=https%3A%2F%2Fwww.urbanoutfitters.com%2Fshop%2Fprod-12345
        '401':
          description: Unauthorized - invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createSellerProduct
      summary: Urban Outfitters Create Seller Product
      description: Submit a new product listing to the Urban Outfitters marketplace for review.
      tags:
      - Products
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SellerProductCreate'
            examples:
              createSellerProductRequestExample:
                summary: Default createSellerProduct request
                x-microcks-default: true
                value:
                  sku: BRAND-NEW-ITEM-001
                  name: New Indie Brand Item
                  description: Handcrafted artisan product
                  price: 55.0
                  currency: USD
                  category: womens
      responses:
        '201':
          description: Product listing created and submitted for review
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SellerProduct'
              examples:
                createSellerProduct201Example:
                  summary: Default createSellerProduct 201 response
                  x-microcks-default: true
                  value:
                    id: seller-prod-002
                    sku: BRAND-NEW-ITEM-001
                    name: New Indie Brand Item
                    status: pending_review
        '400':
          description: Invalid product data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError_2'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    servers:
    - url: https://api.rakutenadvertising.com
      description: Rakuten Advertising API (manages Urban Outfitters affiliate program)
  /v1/products/{product_id}:
    get:
      operationId: getProduct
      summary: Urban Outfitters Get Product Details
      description: Retrieve detailed information for a specific Urban Outfitters product including price, description, available sizes, and affiliate deep link.
      tags:
      - Products
      parameters:
      - name: product_id
        in: path
        required: true
        description: The unique product identifier
        schema:
          type: string
        example: prod-12345
      responses:
        '200':
          description: Product details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Product'
              examples:
                getProduct200Example:
                  summary: Default getProduct 200 response
                  x-microcks-default: true
                  value:
                    id: prod-12345
                    name: Graphic Tee - Earth Day
                    description: Relaxed-fit graphic tee in 100% cotton
                    price: 29.0
                    currency: USD
                    category: womens
                    brand: Urban Outfitters
                    inStock: true
        '404':
          description: Product not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIError'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    servers:
    - url: https://api.rakutenadvertising.com
      description: Rakuten Advertising API (manages Urban Outfitters affiliate program)
components:
  schemas:
    ProductSearchResponse:
      type: object
      description: Paginated product search results
      properties:
        total:
          type: integer
          description: Total matching products
          example: 450
        offset:
          type: integer
          description: Current offset
          example: 0
        limit:
          type: integer
          description: Items per page
          example: 20
        products:
          type: array
          description: List of products
          items:
            $ref: '#/components/schemas/Product'
    APIError:
      type: object
      description: API error response
      properties:
        error:
          type: string
          description: Error code
          example: unauthorized
        message:
          type: string
          description: Human-readable error message
          example: Invalid API key. Please check your credentials.
        code:
          type: integer
          description: HTTP status code
          example: 401
    Product:
      type: object
      description: A product available in the Urban Outfitters catalog
      properties:
        id:
          type: string
          description: Unique product identifier
          example: prod-12345
        name:
          type: string
          description: Product name
          example: Graphic Tee - Earth Day
        description:
          type: string
          description: Product description
          example: Relaxed-fit graphic tee in 100% cotton
        price:
          type: number
          description: Product price
          example: 29.0
        salePrice:
          type: number
          description: Sale price if on sale
          example: 19.99
        currency:
          type: string
          description: Price currency
          example: USD
        category:
          type: string
          description: Product category
          enum:
          - womens
          - mens
          - home
          - accessories
          - beauty
          - kids
          example: womens
        brand:
          type: string
          description: Brand name
          example: Urban Outfitters
        imageUrl:
          type: string
          description: Primary product image URL
          example: https://images.urbndata.com/is/image/UrbanOutfitters/prod-12345
        affiliateUrl:
          type: string
          description: Affiliate deep link for the product
          example: https://click.linksynergy.com/link?id=aff-abc123&offerid=788395
        inStock:
          type: boolean
          description: Whether the product is in stock
          example: true
        sizes:
          type: array
          description: Available sizes
          items:
            type: string
          example:
          - XS
          - S
          - M
          - L
          - XL
    APIError_2:
      type: object
      description: API error response
      properties:
        error:
          type: string
          example: unauthorized
        message:
          type: string
          example: Invalid API key.
        code:
          type: integer
          example: 401
    SellerProductListResponse:
      type: object
      description: Paginated seller product listings
      properties:
        total:
          type: integer
          example: 150
        offset:
          type: integer
          example: 0
        limit:
          type: integer
          example: 50
        products:
          type: array
          items:
            $ref: '#/components/schemas/SellerProduct'
    SellerProductCreate:
      type: object
      description: Request body for creating a product listing
      required:
      - sku
      - name
      - price
      - currency
      properties:
        sku:
          type: string
          example: BRAND-NEW-ITEM-001
        name:
          type: string
          example: New Product Name
        description:
          type: string
          example: Product description
        price:
          type: number
          example: 55.0
        currency:
          type: string
          example: USD
        category:
          type: string
          example: womens
    SellerProduct:
      type: object
      description: A seller product listing on the Urban Outfitters marketplace
      properties:
        id:
          type: string
          description: Marketplace product identifier
          example: seller-prod-001
        sku:
          type: string
          description: Seller SKU / product identifier
          example: UO-BRAND-TEE-001
        name:
          type: string
          description: Product name
          example: Indie Brand Graphic Tee
        description:
          type: string
          description: Product description
          example: Handcrafted screenprinted tee
        price:
          type: number
          description: Product retail price
          example: 45.0
        currency:
          type: string
          description: Price currency
          example: USD
        category:
          type: string
          description: Product category
          example: womens
        status:
          type: string
          description: Listing status
          enum:
          - active
          - inactive
          - pending_review
          - rejected
          example: active
        inventoryQuantity:
          type: integer
          description: Available inventory
          example: 250
        imageUrls:
          type: array
          description: Product image URLs
          items:
            type: string
          example:
          - https://cdn.seller.com/product-image-1.jpg
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Rakuten Advertising API key provided upon affiliate program enrollment. Include as Bearer token in the Authorization header.
x-refined-from:
- urban-outfitters-affiliate-api-openapi.yml
- urban-outfitters-marketplace-api-openapi.yml