Piloterr

StockX Product

Retrieve detailed product information from StockX, including market prices, bid/ask data, size variants, and product metadata.

Credit cost: 2 credits per call

GET
/v2/stockx/product

Authorization

ApiKeyAuth
x-api-key<token>

Your API key. Include it in the x-api-key header for every request.

In: header

Query Parameters

query*string

A StockX product slug.

Examples:

nike-air-max-1-travis-scott-wheat

Note: Use product slugs, not internal UUIDs (e.g. do NOT use c318bbcc-312a-4396-9252-698c203d1dea). Find slugs in the product URL on stockx.com.

country?string

Country code for localized pricing and availability.

  • US: United States (default)
  • FR: France
  • GB: United Kingdom
  • SV: El Salvador

Example: US

Default"US"
currency?string

Currency code for price display.

  • USD: US Dollar (default)
  • EUR: Euro
  • GBP: British Pound

Example: USD

Default"USD"
language?string

Language code for localized content.

  • en-US: English (default)
  • fr-FR: French
  • en-GB: British English

Example: en-US

Default"en-US"

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://api.piloterr.com/v2/stockx/product?query=string"
{
  "id": "c318bbcc-312a-4396-9252-698c203d1dea",
  "sku": "DO9392-700",
  "name": "Nike Air Max 1 Travis Scott Cactus Jack Saturn Gold",
  "slug": "nike-air-max-1-travis-scott-wheat",
  "brand": "Nike",
  "image": "https://images.stockx.com/images/Nike-Air-Max-1-Travis-Scott-Wheat-Product.jpg?fit=fill&bg=FFFFFF&w=700&h=500&fm=webp&auto=compress&q=90&dpr=2&trim=color&updated_at=1738193358",
  "model": "Nike Air Max 1",
  "gender": "men",
  "market": {
    "bids": {
      "lowest_ask": 380,
      "highest_bid": 340,
      "number_asks": 45,
      "number_bids": 28
    },
    "sales": {
      "last_sale": 365,
      "sales_last_72h": 12
    }
  },
  "category": "sneakers",
  "primary_category": "sneakers",
  "description": "The Nike Air Max 1 Travis Scott Cactus Jack Saturn Gold is a collaborative sneaker featuring a wheat/Saturn Gold colorway with hidden stash pocket.",
  "traits": [
    {
      "name": "Style",
      "value": "DO9392-700"
    },
    {
      "name": "Colorway",
      "value": "Saturn Gold/Wheat"
    },
    {
      "name": "Retail Price",
      "value": "$150"
    }
  ]
}
{
  "error": "Bad Request"
}
{
  "error": "Invalid API Key"
}
{
  "error": "Payment required"
}
{
  "error": "Rate limit exceeded for the API key: quota monthly"
}
{
  "error": "Internal Error"
}