{
  "info": {
    "name": "Retailed — mcp.ai",
    "description": "REST API for the Retailed MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/retailed",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "retailed_get_goat_prices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/goat/prices",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "goat",
            "prices"
          ]
        },
        "description": "Tool to retrieve pricing information for a specific product on GOAT. Use when you need up-to-date size-based pricing. Call after confirming product_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": \"\",\n  \"country\": \"\",\n  \"product_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "retailed_get_stock_x_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/stock/x/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "stock",
            "x",
            "product"
          ]
        },
        "description": "Tool to retrieve detailed StockX product information, including variant-level data. Use when you need comprehensive metadata from StockX by SKU or URL. Response is structured per variant; aggregate pr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sku\": \"\",\n  \"url\": \"\",\n  \"include_market\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "retailed_get_stockx_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/stockx/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "stockx",
            "search"
          ]
        },
        "description": "Tool to search StockX marketplace for products and pricing information. Use when you have a search term and need up-to-date listings on StockX. Note: SKU identifiers and size labels in results may dif",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "retailed_get_stockx_trends",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/stockx/trends",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "stockx",
            "trends"
          ]
        },
        "description": "Tool to get the latest trending products from StockX. Use when you want to discover current trending items.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"order\": \"\",\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"product_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "retailed_get_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "usage"
          ]
        },
        "description": "Tool to retrieve current API usage statistics. The only mechanism to check remaining API credits; call proactively before long-running analyses to prevent mid-run quota exhaustion.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "retailed_search_products",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/products",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "products"
          ]
        },
        "description": "Search for products in Retailed database matching query criteria. Uses Retailed's granular querying language with support for filtering by name, SKU, brand. SKUs and size labels are not standardized a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"domain\": \"\",\n  \"source\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}