depop Products - By Slug API

Product operations using URL-friendly slug identifiers

Operations 6

GET /api/v1/products/by-slug/{slug}/ Get product details by slug #
PUT /api/v1/products/by-slug/{slug}/ Update an existing product by slug #
PATCH /api/v1/products/by-slug/{slug}/ Patch an existing product by slug #
DELETE /api/v1/products/by-slug/{slug}/ Delete a product by slug #
POST /api/v1/products/by-slug/{slug}/mark-as-sold/ Mark a product as sold by slug #
POST /api/v1/products/by-slug/{slug}/offer/ Submit an offer for a product by slug #

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/depop-products-by-slug-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

depop-products-by-slug-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Seller Products - By Slug API
  version: 1.0.0
  description: 'Externally facing API to allow enterprise partners to automate listing on Depop.


    ## OAuth 2.0 Scopes


    This API uses OAuth 2.0 scopes to control access to different resources. Each endpoint requires specific scopes to access:


    - **`products_read`** - Required to read product information and listings

    - **`products_write`** - Required to create, update, or delete products

    - **`orders_read`** - Required to read order information and order history

    - **`orders_write`** - Required to mark orders as shipped or process refunds

    - **`offers_read`** - Required to read offer pricing information (auto send offer price, auto negotiate offer price)

    - **`offers_write`** - Required to set or modify offer prices (auto send offer price, auto negotiate offer price)

    - **`shop_read`** - Required to read shop information including seller addresses and available shipping providers


    API key tokens have access to all scopes, while OAuth tokens are limited to the scopes specified in the token.


    If you attempt to access an endpoint without the required scope, you will receive a `403 Forbidden` response with the error code `insufficient_scope`.'
servers:
- url: https://partnerapi-staging.depop.com
- url: https://partnerapi.depop.com
security:
- BearerAuth: []
tags:
- name: Products - By Slug
  description: Product operations using URL-friendly slug identifiers
paths:
  /api/v1/products/by-slug/{slug}/:
    get:
      tags:
      - Products - By Slug
      summary: Get product details by slug
      description: 'This endpoint allows you to get the details of a product by its slug.

        **Required OAuth Scopes:** - `products_read` - Required to access product information - `offers_read` - Optional. Required to include offer pricing information (`auto_send_offer_price`, `auto_negotiate_offer_price`) in the response. If this scope is not provided, these fields will be omitted from the response.


        The slug is a URL-friendly identifier for the product and can be obtained from any endpoint that returns product details (e.g. `GET /api/v1/products/by-sku/{sku}/` or create/update responses).'
      operationId: getProductBySlug
      parameters:
      - name: slug
        in: path
        description: The slug of the product.
        required: true
        schema:
          type: string
        example: vintage-nike-t-shirt-7033001
      responses:
        '200':
          description: A single product
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Product'
              example:
                product_id: 7033001
                slug: vintage-nike-t-shirt-7033001
                status: STATUS_ONSALE
                address:
                  country_code: GB
                  state: Greater London
                description: 'Vintage Nike T-Shirt in excellent condition.

                  Black with white swoosh logo on the front.

                  Size medium, fits true to size.

                  Small mark on the left sleeve (see last image).


                  #vintage #nike #streetwear #90s'
                price_currency: GBP
                price_amount: '25.99'
                current_price: '24.00'
                discount_price: '24.00'
                auto_send_offer_price: '20.00'
                auto_negotiate_offer_price: '20.00'
                national_shipping_cost: '3.50'
                international_shipping_cost: '12.00'
                quantity: 1
                pictures:
                - url: https://media-photos-staging.depop.com/b0/18220/5612584_b6795bc34778465293e45647518906d6/P0.jpg
                  height: 1280
                  width: 1280
                - url: https://media-photos-staging.depop.com/b0/18220/5612584_b6795bc34778465293e45647518906d6/P1.jpg
                  height: 1280
                  width: 1280
                department: menswear
                product_type: tshirts
                size_set_id: 52
                size_id: 10
                condition: used_excellent
                colour:
                - black
                - white
                style:
                - streetwear
                - retro
                - sportswear
                age:
                - 90s
                attributes:
                  sleeve-length:
                  - short
                  material:
                  - cotton
                  occasion:
                  - casual
                brand: nike
                is_boosted: false
                source:
                - vintage
                - preloved
                created_at: '2024-01-15T10:30:00Z'
                updated_at: '2024-01-15T14:20:00Z'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          description: Product not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                id: a210923f-c1f3-4d84-a2bd-7f18c68553e2
                errors:
                - code: product_not_found
                  message: 'Product (slug: vintage-nike-t-shirt-7033001) not found'
    put:
      tags:
      - Products - By Slug
      summary: Update an existing product by slug
      description: 'This endpoint allows you to update an existing product on Depop using its slug. The product will be updated with the new details in the request.

        **Required OAuth Scopes:** - `products_write` - Required for all product operations - `offers_write` - Required when setting `auto_send_offer_price` or `auto_negotiate_offer_price`

        **Note:** This endpoint only supports updating existing products. If the slug does not exist, a 404 error will be returned. To create a new product, use the POST `/api/v1/products/` or PUT `/api/v1/products/by-sku/{sku}/` endpoint instead.'
      operationId: updateProductBySlug
      parameters:
      - name: slug
        in: path
        description: The slug of the product to update.
        required: true
        schema:
          type: string
        example: vintage-nike-t-shirt-7033001
      requestBody:
        description: Product details to update
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProductPutRequest'
            example:
              address:
                country_code: GB
                state: Greater London
              description: 'Vintage Nike T-Shirt in excellent condition.

                Black with white swoosh logo on the front.

                Size medium, fits true to size.

                Small mark on the left sleeve (see last image).


                #vintage #nike #streetwear #90s'
              price_currency: GBP
              price_amount: '25.99'
              discount_price: '24.00'
              auto_send_offer_price: '20.00'
              auto_negotiate_offer_price: '20.00'
              national_shipping_cost: '3.50'
              international_shipping_cost: '12.00'
              quantity: 1
              pictures:
              - url: https://images.ctfassets.net/itoh30v6uh9a/3c1QQDGUAEHH9A76ovYSTA/1837e557daee3c763b6fbedd19785094/WW.jpg#type=cover-image
              - url: https://images.ctfassets.net/itoh30v6uh9a/3c1QQDGUAEHH9A76ovYSTA/1837e557daee3c763b6fbedd19785094/WW.jpg#type=back
              - url: https://images.ctfassets.net/itoh30v6uh9a/3c1QQDGUAEHH9A76ovYSTA/1837e557daee3c763b6fbedd19785094/WW.jpg#type=tag
              department: menswear
              product_type: tshirts
              size_set_id: 52
              size_id: 10
              condition: used_excellent
              colour:
              - black
              - white
              style:
              - streetwear
              - retro
              - sportswear
              age:
              - 90s
              source:
              - vintage
              - preloved
              brand_name: Nike
              attributes:
                sleeve-length:
                - short
                material:
                - cotton
                occasion:
                - casual
              is_boosted: false
        required: true
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductCreateOrUpdateResponse'
              example:
                product_id: 7033001
                slug: vintage-nike-t-shirt-7033001
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          description: Product not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                id: a210923f-c1f3-4d84-a2bd-7f18c68553e2
                errors:
                - code: product_not_found
                  message: 'Product (slug: vintage-nike-t-shirt-7033001) not found'
    patch:
      tags:
      - Products - By Slug
      summary: Patch an existing product by slug
      description: 'This endpoint allows you to patch an `ON SALE` product''s fields on Depop using its slug.

        If you want to restock a product, call the PUT endpoint with the same slug with the available quantity.

        **Required OAuth Scopes:** - `products_write` - Required for all product operations - `offers_write` - Required when setting `auto_send_offer_price` or `auto_negotiate_offer_price`'
      operationId: patchProductBySlug
      parameters:
      - name: slug
        in: path
        description: The slug of the product to patch.
        required: true
        schema:
          type: string
        example: vintage-nike-t-shirt-7033001
      requestBody:
        description: Product fields to patch on the existing product.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchProductRequest'
            example:
              price_amount: '39.99'
              discount_price: '37.00'
              auto_send_offer_price: '35.00'
              auto_negotiate_offer_price: '35.00'
        required: true
      responses:
        '200':
          description: Successful operation, no content returned.
          content: {}
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          description: Product not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                id: a210923f-c1f3-4d84-a2bd-7f18c68553e2
                errors:
                - code: product_not_found
                  message: 'Product (slug: vintage-nike-t-shirt-7033001) not found'
    delete:
      tags:
      - Products - By Slug
      summary: Delete a product by slug
      description: 'This endpoint allows you to delete a product on Depop using its slug. The product will no longer be available for sale and will be removed from your shop. This endpoint is idempotent - it will return a successful response (200) even if the product doesn''t exist.

        **Required OAuth Scope:** `products_write`'
      operationId: deleteProductBySlug
      parameters:
      - name: slug
        in: path
        description: The slug of the product to delete.
        required: true
        schema:
          type: string
        example: vintage-nike-t-shirt-7033001
      - name: fail_if_active_offers
        in: query
        description: 'If set to `true`, the delete will fail with a 409 Conflict error if the product has any active offers. If set to `false` or omitted, the product will be deleted regardless of active offers.


          **Note:** This is a temporary flag until insights are available to help you manage active offers. If you plan to use this feature, please let us know so we can understand your use case and ensure a smooth transition when insights become available.'
        required: false
        schema:
          type: boolean
          default: false
        example: true
      responses:
        '200':
          description: Successful operation, no content returned.
          content: {}
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '409':
          description: Conflict - Product has active offers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                id: a210923f-c1f3-4d84-a2bd-7f18c68553e2
                errors:
                - code: product_has_active_offers
                  message: Product has active offers and cannot be deleted.
  /api/v1/products/by-slug/{slug}/mark-as-sold/:
    post:
      tags:
      - Products - By Slug
      summary: Mark a product as sold by slug
      description: 'This endpoint allows you to mark a product as sold on your Depop shop using its slug. The product will no longer be available for sale but it will still be visible in your shop with a "sold" overlay.

        **Required OAuth Scope:** `products_write`

        You''re expected to call this as soon as you make a sale on a different platform. You don''t need to call this if the product sells on Depop.

        If the product is not in a selling state, this endpoint will still return successfully but will remain in the same state.'
      operationId: markProductAsSoldBySlug
      parameters:
      - name: slug
        in: path
        description: The slug of the product.
        required: true
        schema:
          type: string
        example: vintage-nike-t-shirt-7033001
      responses:
        '200':
          description: Successful operation, no content returned.
          content: {}
        '400':
          $ref: '#/components/responses/BadRequest'
        '404':
          description: Product not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                id: a210923f-c1f3-4d84-a2bd-7f18c68553e2
                errors:
                - code: product_not_found
                  message: 'Product (slug: vintage-nike-t-shirt-7033001) not found'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /api/v1/products/by-slug/{slug}/offer/:
    post:
      tags:
      - Products - By Slug
      summary: Submit an offer for a product by slug
      description: 'This endpoint allows you to submit an offer on behalf of a seller to a specific buyer for a product using its slug. The offer will be sent to the specified buyer. You can only send offers to buyers who have shown interest in your products (likes, bags, messages)

        **Required OAuth Scope:** `offers_write`


        #### Validation Rules

        The following validations are enforced:

        - **Offer value:** Must be at least 5% lower than product price_amount - **Currency:** Must match the product''s currency exactly - **Size ID:** Must follow size handling rules (see below)


        #### Multiple sizes Handling

        - **Products without multiple sizes:** Do not provide `size_id` - **Products with a single size:** The `size_id` will be automatically populated if not provided - **Products with multiple sizes:** You must provide a valid `size_id` that exists for the product'
      operationId: submitOfferBySlug
      parameters:
      - name: slug
        in: path
        description: The slug of the product.
        required: true
        schema:
          type: string
        example: vintage-nike-t-shirt-7033001
      requestBody:
        description: Offer details payload
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmitOfferRequest'
            example:
              offer_recipient_id: 456789
              offer_value: 25.0
              offer_currency: GBP
              size_id: 2
      responses:
        '200':
          description: Offer submitted successfully, no content returned.
          content: {}
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          description: Product not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Unprocessable Entity - validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                currencyMismatch:
                  summary: Currency mismatch
                  value:
                    id: a210923f-c1f3-4d84-a2bd-7f18c68553e2
                    errors:
                    - code: validation-error
                      message: Offer currency GBP does not match product currency USD
                priceNotAtOfferThreshold:
                  summary: Offer price not 5% lower than the product price
                  value:
                    id: b320134g-d2g4-5e95-b3ce-8g29d79664f3
                    errors:
                    - code: validation-error
                      message: Offer value must be at least 5% lower than the product price
                invalidSizeId:
                  summary: Invalid size ID for product
                  value:
                    id: c431245h-e3h5-6f06-c4df-9h30e80775g4
                    errors:
                    - code: validation-error
                      message: Size Id 99 does not exist for product vintage-nike-t-shirt-7033001
                multipleSizesNoSizeId:
                  summary: Multiple sizes but no size ID provided
                  value:
                    id: d5423561-f416-4a17-b5e0-0141f91886c5
                    errors:
                    - code: validation-error
                      message: Product vintage-nike-t-shirt-7033001 has multiple sizes, a size ID must be provided
                noSizesButSizeProvided:
                  summary: No sizes but size ID provided
                  value:
                    id: e6534670-a5b7-4c28-ae6f-1a52c02997d6
                    errors:
                    - code: validation-error
                      message: Product vintage-nike-t-shirt-7033001 does not have multiple sizes, a size ID must not be provided
components:
  responses:
    Forbidden:
      description: Forbidden - Insufficient scope
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            id: a210923f-c1f3-4d84-a2bd-7f18c68553e2
            errors:
            - code: insufficient_scope
              message: 'Required scope: products_write'
    BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            id: a210923f-c1f3-4d84-a2bd-7f18c68553e2
            errors:
            - code: bad-request
              message: invalid request
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            id: a210923f-c1f3-4d84-a2bd-7f18c68553e2
            errors:
            - code: unauthorized
              message: invalid api key
  schemas:
    ProductCreateOrUpdateResponse:
      type: object
      required:
      - product_id
      - slug
      properties:
        product_id:
          type: number
          example: 12345678
          description: The product id of the created or updated product.
        slug:
          type: string
          example: vintage-nike-t-shirt-12345678
          description: The URL-friendly identifier for the product on Depop. This can be used with the `/api/v1/products/by-slug/{slug}/` endpoints.
        sku:
          type:
          - string
          - 'null'
          example: ABC-12345-S-BL
          description: 'The SKU of the product.

            - For PUT `/api/v1/products/by-sku/{sku}/`: Always present (same as the SKU in the URL path). - For PUT `/api/v1/products/by-slug/{slug}/`: Present if the product has a SKU, otherwise null. - For PUT `/api/v1/products/by-product-id/{productId}/`: Present if the product has a SKU, otherwise null. - For POST `/api/v1/products/`: Present if SKU was provided in the request, otherwise null.'
      example:
        product_id: 12345678
        slug: vintage-nike-t-shirt-12345678
        sku: ABC-12345-S-BL
    DepopShippingDetails:
      type: object
      required:
      - address_id
      - shipping_provider_id
      - parcel_size_id
      - payer
      properties:
        address_id:
          type: integer
          format: int64
          description: 'The ID of the seller address to ship from.

            This must be an address ID obtained from the `/api/v1/shop/seller-addresses/` endpoint.

            The address determines which shipping providers and parcel sizes are available.'
          example: 123456
        shipping_provider_id:
          type: string
          description: 'The identifier for the shipping provider.

            This must be a provider ID returned from the `/api/v1/shop/seller-addresses/{address_id}/shipping-providers/` endpoint for the specified address.

            Common providers include: USPS, MY_HERMES (EVRI), SENDLE.'
          example: USPS
        parcel_size_id:
          type: string
          description: 'The identifier for the parcel size.

            This must be a parcel size ID available for the specified shipping provider, obtained from the `/api/v1/shop/seller-addresses/{address_id}/shipping-providers/` endpoint.

            Common sizes include: SMALL, MEDIUM, LARGE, etc.'
          example: SMALL
        payer:
          type: string
          description: 'Who pays for the shipping cost.

            - `buyer`: The buyer pays for shipping (shipping cost is added to the total price) - `seller`: The seller pays for shipping (free shipping for buyers)'
          enum:
          - buyer
          - seller
          example: buyer
      example:
        address_id: 123456
        shipping_provider_id: USPS
        parcel_size_id: SMALL
        payer: buyer
    PatchProductRequest:
      type: object
      properties:
        price_amount:
          type: string
          description: The price of the item. Must be at least $1.00 or £1.00. Up to 2 decimal places.
          example: '50.99'
        discount_price:
          type: string
          description: 'The discount price of the item.

            Must be less than the price_amount. Up to 2 decimal places.'
          example: '48.00'
        auto_send_offer_price:
          type: string
          description: 'The price to automatically send to buyers who liked or have bagged the product.

            There''s a fixed 1h delay before an offer is sent.

            If not set, the product will not automatically send offers.

            Must be less at least 5% off the price_amount or the discount_price if the discount_price is set. Up to 2 decimal places.'
          example: '45.00'
        auto_negotiate_offer_price:
          type: string
          description: "The price to automatically respond with when a buyer sends an offer in this product:\n * If the buyer offer is higher or equal to this value, then the offer will be automatically accepted.\n * If the buyer offer is lower than this value, then the offer will be automatically countered with this price.\n\nIf the buyer counters again, the same value will be used to counter the buyer's offer.\nIf not set, the offers will not be automatically responded to.\nMust be less at least 5% off the price_amount. Up to 2 decimal places.\n**Note:** Requires `offers_write` OAuth scope."
          example: '45.00'
        quantity:
          type: number
          description: The quantity of the product available for sale. Must be at least 1. (Use the marked as sold endpoint to reduce quantity to 0)
          example: 1
    Address:
      type: object
      required:
      - country_code
      properties:
        country_code:
          type: string
          example: GB
        state:
          type: string
          description: The state/county of the product's address.
          example: Greater London
      example:
        country_code: GB
        state: Greater London
    SubmitOfferRequest:
      type: object
      description: Request body for submitting an offer on behalf of a seller to a buyer for a specific product.
      required:
      - offer_recipient_id
      - offer_value
      - offer_currency
      properties:
        offer_recipient_id:
          type: integer
          format: int64
          description: The user ID of the buyer who will receive the offer.
          example: 456789
        offer_value:
          type: number
          format: double
          description: The offer amount. Must be at least 5% lower than the product price_amount.
          example: 25.0
          minimum: 0.01
        offer_currency:
          type: string
          description: The currency code for the offer (e.g., GBP, USD, EUR). Must match the product's currency.
          example: GBP
          maxLength: 3
        size_id:
          type: integer
          format: int32
          description: 'The size ID for products with multiple sizes.

            - **Not required** for products without sizes or products with a single size - **Required** for products with multiple sizes - Must be a valid size ID that exists for the product'
          example: 2
    PublicPicture:
      type: object
      required:
      - url
      properties:
        url:
          type: string
          description: 'Publicly accessible URL of the picture.

            Non-square images are also supported.

            Currently, we support JPG, WebP and PNG image formats.'
          example: https://images.ctfassets.net/itoh30v6uh9a/3c1QQDGUAEHH9A76ovYSTA/1837e557daee3c763b6fbedd19785094/WW.jpg
    ErrorResponse:
      type: object
      properties:
        id:
          type: string
          example: a210923f-c1f3-4d84-a2bd-7f18c68553e2
          description: A unique identifier for the error response.
        errors:
          type: array
          items:
            $ref: '#/components/schemas/ErrorItem'
      example:
        id: a210923f-c1f3-4d84-a2bd-7f18c68553e2
        errors:
        - code: product_not_found
          message: 'Product (sku: womens-tshirt-1, id: 123) not found'
    Picture:
      type: object
      required:
      - url
      - height
      - width
      properties:
        url:
          type: string
          description: URL of the picture.
          example: https://media-photos-staging.depop.com/b0/18220/5612584_b6795bc34778465293e45647518906d6/P0.jpg
        height:
          type: number
          example: 1280
        width:
          type: number
          example: 1280
    Product:
      type: object
      properties:
        sku:
          type:
          - string
          - 'null'
          description: SKU of the product. This field is optional and will be null if no SKU was assigned to the product.
          example: ABC-12345-S-BL
        product_id:
          type: number
          description: The id of the product.
          example: 123456789
        slug:
          type: string
          description: The URL-friendly slug of the product. Can be used to construct the product URL as `https://www.depop.com/products/{slug}/`.
          example: vintage-nike-t-shirt-123456789
        status:
          type: string
          description: The status of the product.
          anyOf:
          - type: string
            enum:
            - STATUS_ONSALE
            - STATUS_PURCHASED
            - STATUS_MARKED_AS_SOLD
            - STATUS_DELETED
            - STATUS_DELETED_ONSALE
            - STATUS_DELETED_PURCHASED
            - STATUS_DELETED_MARKED_AS_SOLD
            - STATUS_PRODUCT_BANNED_ONSALE
            - STATUS_USER_BANNED_ONSALE
            - STATUS_PRODUCT_BANNED_PURCHASED
            - STATUS_USER_BANNED_PURCHASED
          example: STATUS_ONSALE
        address:
          $ref: '#/components/schemas/Address'
        description:
          type: string
          description: "A good description should contain key attribute information (brand, category, color, size, age etc), clarifying information about flaws, condition, fit, size and measurements. Commonly they end with hash tags (for example, \\#summer).\nConstraints:\n * Limited to 1000 characters\n * Email addresses are not allowed\n * Can only have up to 5 hashtags (for example, \\#summer)."
          maxLength: 1000
          example: "Women's Burgundy and Purple Vest\nMauve and white striped tank top  Small mark at the bottom of the hem \n#stripes #summer"
        price_currency:
          type: string
          description: The currency code of the item's price.
          example: GBP
        price_amount:
          type: string
          description: The price of the item. Must be at least $1.00 or £1.00. Up to 2 decimal places.
          example: '50.99'
        current_price:
          type: string
          description: The current effective price of the item, reflecting any active discount. Equal to price_amount when no discount is applied.
          example: '45.99'
        auto_send_offer_price:
          type: string
          description: 'The price to automatically send to buyers who liked or have bagged the product.

            There''s a fixed 1h delay before an offer is sent.

            If not set, the product will not automatically send offers.

            Must be less at least 5% off the price_amount. Up to 2 decimal places.

            **Note:** Requires `offers_read` OAuth scope to include this field in the response. If scope is not provided, this field will be omitted.'
          example: '45.00'
        auto_negotiate_offer_price:
          type: string
          description: "The price to automatically respond with when a buyer sends an offer in this product:\n * If the buyer offer is higher or equal to this value, then the offer will be automatically accepted.\n * If the buyer offer is lower than this value, then the offer will be automatically countered with this price.\n\nIf the buyer counters again, the same value will be used to counter the buyer's offer.\nIf not set, the offers will not be automatically responded to.\nMust be less at least 5% off the price_amount. Up to 2 decimal places.\n**Note:** Requires `offers_read` OAuth scope to include this field in the response. If scope is not provided, this field will be omitted."
          example: '45.00'
        international_shipping_cost:
          type: string
          description: The cost of shipping the product internationally. Only set this if the product can be shipped internationally. Same currency as price_currency.
          example: '5.0'
        national_shipping_cost:
          type: string
          description: 'The cost of shipping the product nationally. Same currency as price_currency. If set to 0, the product has free shipping for buyers.

            **Important:** Either `national_shipping_cost` OR `depop_shipping` must be provided. If using Depop managed shipping, use `depop_shipping` instead and omit this field.'
          example: '2.0'
        depop_shipping:
          allOf:
          - $ref: '#/components/schemas/DepopShippingDetails'
          description: 'Depop managed shipping configuration. When provided, Depop will handle the shipping and automatically calculate the national shipping cost based on the selected provider and parcel size.

            **Important:** Either `depop_shipping` OR `national_shipping_cost` must b

# --- truncated at 32 KB (50 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/depop/refs/heads/main/openapi/depop-products-by-slug-api-openapi.yml