From 46720ddf029321ff794249dc488dda756300c73e Mon Sep 17 00:00:00 2001 From: FranciscoEP Date: Fri, 8 Apr 2022 12:57:02 -0500 Subject: [PATCH 1/3] Web API and Web Scrapper project completed, added readme --- .../Project_2_API-checkpoint.ipynb | 508 +++++++++ .../Project_2_Web_Scrapping-checkpoint.ipynb | 394 +++++++ Project_2_API.ipynb | 508 +++++++++ Project_2_Web_Scrapping.ipynb | 539 +++++++++ README.md | 88 +- data/.DS_Store | Bin 0 -> 6148 bytes data/car_sales_kavak.csv | 360 ++++++ data/sneakers.csv | 1001 +++++++++++++++++ your-code/.gitkeep | 0 9 files changed, 3344 insertions(+), 54 deletions(-) create mode 100644 .ipynb_checkpoints/Project_2_API-checkpoint.ipynb create mode 100644 .ipynb_checkpoints/Project_2_Web_Scrapping-checkpoint.ipynb create mode 100644 Project_2_API.ipynb create mode 100644 Project_2_Web_Scrapping.ipynb create mode 100644 data/.DS_Store create mode 100644 data/car_sales_kavak.csv create mode 100644 data/sneakers.csv delete mode 100644 your-code/.gitkeep diff --git a/.ipynb_checkpoints/Project_2_API-checkpoint.ipynb b/.ipynb_checkpoints/Project_2_API-checkpoint.ipynb new file mode 100644 index 0000000..9bbe534 --- /dev/null +++ b/.ipynb_checkpoints/Project_2_API-checkpoint.ipynb @@ -0,0 +1,508 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "b650bfea", + "metadata": {}, + "source": [ + "# Project API" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "72527bdd", + "metadata": {}, + "outputs": [], + "source": [ + "import requests \n", + "import pandas as pd\n", + "from time import sleep\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "id": "491ce6d8", + "metadata": {}, + "source": [ + "## Data Extraction Function" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ee341e04", + "metadata": {}, + "outputs": [], + "source": [ + "def get_data(url,headers):\n", + " responses = []\n", + " for page in range(1, 11):\n", + " sleep(2)\n", + " print(f\"Requesting {url%page} to server\")\n", + " sleep(2)\n", + " response = requests.request(\"GET\", url%page, headers=headers)\n", + " response = response.json() \n", + " responses.append(response['results'])\n", + " print(f\"Response extracted successfully\")\n", + " print(10*\"--------\")\n", + "# responses.append(response)\n", + " return responses" + ] + }, + { + "cell_type": "markdown", + "id": "677fbd20", + "metadata": {}, + "source": [ + "## Data Transformation Function" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "9d7e246e", + "metadata": {}, + "outputs": [], + "source": [ + "def convert_csv(response):\n", + " print(\"Preparing information to be ready in file\")\n", + " sleep(2)\n", + " flat_data = [final_data for matrix in response for final_data in matrix]\n", + " df = pd.DataFrame(flat_data)\n", + " parse = df.to_csv(\"./data/sneakers.csv\", index=False)\n", + " print(\"File ready on data folder with name 'sneakers.csv'\")\n", + " print(10*\"--------\")\n", + " sleep(2)\n", + " return parse\n" + ] + }, + { + "cell_type": "markdown", + "id": "c2ebc17a", + "metadata": {}, + "source": [ + "## General Function" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "4497a1a7", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The information is requested from API\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=1 to server\n", + "Response extracted successfully\n", + "--------------------------------------------------------------------------------\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=2 to server\n", + "Response extracted successfully\n", + "--------------------------------------------------------------------------------\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=3 to server\n" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [7]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 9\u001b[0m df \u001b[38;5;241m=\u001b[39m convert_csv(response) \n\u001b[1;32m 11\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;18m__name__\u001b[39m \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m__main__\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[0;32m---> 12\u001b[0m \u001b[43mrun\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", + "Input \u001b[0;32mIn [7]\u001b[0m, in \u001b[0;36mrun\u001b[0;34m()\u001b[0m\n\u001b[1;32m 6\u001b[0m url \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mhttps://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=\u001b[39m\u001b[38;5;132;01m%s\u001b[39;00m\u001b[38;5;124m'\u001b[39m\n\u001b[1;32m 7\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mThe information is requested from API\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m----> 8\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[43mget_data\u001b[49m\u001b[43m(\u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43mheaders\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 9\u001b[0m df \u001b[38;5;241m=\u001b[39m convert_csv(response)\n", + "Input \u001b[0;32mIn [2]\u001b[0m, in \u001b[0;36mget_data\u001b[0;34m(url, headers)\u001b[0m\n\u001b[1;32m 4\u001b[0m sleep(\u001b[38;5;241m2\u001b[39m)\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mRequesting \u001b[39m\u001b[38;5;132;01m{\u001b[39;00murl\u001b[38;5;241m%\u001b[39mpage\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m to server\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m----> 6\u001b[0m \u001b[43msleep\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 7\u001b[0m response \u001b[38;5;241m=\u001b[39m requests\u001b[38;5;241m.\u001b[39mrequest(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mGET\u001b[39m\u001b[38;5;124m\"\u001b[39m, url\u001b[38;5;241m%\u001b[39mpage, headers\u001b[38;5;241m=\u001b[39mheaders)\n\u001b[1;32m 8\u001b[0m response \u001b[38;5;241m=\u001b[39m response\u001b[38;5;241m.\u001b[39mjson() \n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + } + ], + "source": [ + "def run():\n", + " headers = {\n", + "\t\"X-RapidAPI-Host\": \"the-sneaker-database.p.rapidapi.com\",\n", + "\t\"X-RapidAPI-Key\": \"\"\n", + " }\n", + " url = 'https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=%s'\n", + " print(\"The information is requested from API\")\n", + " response = get_data(url,headers)\n", + " df = convert_csv(response) \n", + " \n", + "if __name__ == \"__main__\":\n", + " run()" + ] + }, + { + "cell_type": "markdown", + "id": "cdde4139", + "metadata": {}, + "source": [ + "## Read file" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "c36f093e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idskubrandnamecolorwaygendersilhouettereleaseYearreleaseDateretailPriceestimatedMarketValuestoryimagelinks
0b274a3f7-7211-42de-81ec-01802a0b0853DO6492-141NikeAir Max 90 Golf 'Washed Teal'Sail/Pearl White/Light Orewood Brown/Washed TealmenAir Max 9020222022-04-05150200The Nike Air Max 90 Golf ‘Washed Teal’ takes t...{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
1bf17d1b0-82e7-46de-b78a-6ec0fe748f17DO0750-002JordanJordan 1 Low SE Sherpa Fleece (W)College Grey/Particle Grey/Neutral Grey/WhitewomenAir Jordan 120222022-04-05120110NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': 'https://stockx.com/air-jordan-1-lo...
2cbcf2b91-c213-4b84-b6fa-12e69651c4bfDC0774-114JordanWmns Air Jordan 1 Low 'Marina Blue'White/Dark Marina BluewomenAir Jordan 120222022-04-05100140NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
301903417-7f84-46f3-b946-44dca028cc7dGZ1554adidasSwift Run 22 J 'White Black'Cloud White/Core Black/Cloud WhiteyouthSwift Run20222022-04-047070NaN{'360': [], 'original': '', 'small': '', 'thum...{'stockX': '', 'goat': 'https://goat.com/sneak...
411492de7-ed5b-4e06-82bf-12eb96ed08c0GY1972ReebokWmns Nano X1 'Pure Grey Hint Mint'Pure Grey 1/Hint Mint/Pure Grey 3womenNano X120222022-04-04135135NaN{'360': [], 'original': '', 'small': '', 'thum...{'stockX': '', 'goat': 'https://goat.com/sneak...
.............................................
995b34b98a7-1680-4401-a824-4a49c8ee0dd0GX7979adidasFreak Ultra 22 'White Gold Metallic'Cloud White/Gold Metallic/Cloud WhitemenFreak Ultra20222022-03-14180250NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
996b6bd4804-cec1-4ed7-817e-322dd5343483704949-012NikeHuarache Run PS 'Cool Grey'Cool Grey/Wolf Grey/White/Cool GreyyouthHuarache20222022-03-1468150NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
997b764d270-d7eb-49dd-ba61-2a25a7655e78DO5886-900NikeWmns Air Vapormax 2021 Flyknit 'Multi-Color'Multi-Color/Lime Glow/Racer Pink/BlackwomenAir VaporMax20222022-03-14200175NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
998cc68a042-f2c2-4d0e-92cb-8e3ee563a122GX5131adidasFreak Ultra 22 'White Silver Metallic'Cloud White/Silver Metallic/Clear GreymenFreak Ultra20222022-03-14180250NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
999cfcaf8f4-3e1e-46bd-bd91-bb3a04db282dCU1722-960ConverseChuck Taylor All Star High CustomMulti-Color/Multi-ColormenChuck Taylor All Star20222022-03-148585NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
\n", + "

1000 rows × 14 columns

\n", + "
" + ], + "text/plain": [ + " id sku brand \\\n", + "0 b274a3f7-7211-42de-81ec-01802a0b0853 DO6492-141 Nike \n", + "1 bf17d1b0-82e7-46de-b78a-6ec0fe748f17 DO0750-002 Jordan \n", + "2 cbcf2b91-c213-4b84-b6fa-12e69651c4bf DC0774-114 Jordan \n", + "3 01903417-7f84-46f3-b946-44dca028cc7d GZ1554 adidas \n", + "4 11492de7-ed5b-4e06-82bf-12eb96ed08c0 GY1972 Reebok \n", + ".. ... ... ... \n", + "995 b34b98a7-1680-4401-a824-4a49c8ee0dd0 GX7979 adidas \n", + "996 b6bd4804-cec1-4ed7-817e-322dd5343483 704949-012 Nike \n", + "997 b764d270-d7eb-49dd-ba61-2a25a7655e78 DO5886-900 Nike \n", + "998 cc68a042-f2c2-4d0e-92cb-8e3ee563a122 GX5131 adidas \n", + "999 cfcaf8f4-3e1e-46bd-bd91-bb3a04db282d CU1722-960 Converse \n", + "\n", + " name \\\n", + "0 Air Max 90 Golf 'Washed Teal' \n", + "1 Jordan 1 Low SE Sherpa Fleece (W) \n", + "2 Wmns Air Jordan 1 Low 'Marina Blue' \n", + "3 Swift Run 22 J 'White Black' \n", + "4 Wmns Nano X1 'Pure Grey Hint Mint' \n", + ".. ... \n", + "995 Freak Ultra 22 'White Gold Metallic' \n", + "996 Huarache Run PS 'Cool Grey' \n", + "997 Wmns Air Vapormax 2021 Flyknit 'Multi-Color' \n", + "998 Freak Ultra 22 'White Silver Metallic' \n", + "999 Chuck Taylor All Star High Custom \n", + "\n", + " colorway gender \\\n", + "0 Sail/Pearl White/Light Orewood Brown/Washed Teal men \n", + "1 College Grey/Particle Grey/Neutral Grey/White women \n", + "2 White/Dark Marina Blue women \n", + "3 Cloud White/Core Black/Cloud White youth \n", + "4 Pure Grey 1/Hint Mint/Pure Grey 3 women \n", + ".. ... ... \n", + "995 Cloud White/Gold Metallic/Cloud White men \n", + "996 Cool Grey/Wolf Grey/White/Cool Grey youth \n", + "997 Multi-Color/Lime Glow/Racer Pink/Black women \n", + "998 Cloud White/Silver Metallic/Clear Grey men \n", + "999 Multi-Color/Multi-Color men \n", + "\n", + " silhouette releaseYear releaseDate retailPrice \\\n", + "0 Air Max 90 2022 2022-04-05 150 \n", + "1 Air Jordan 1 2022 2022-04-05 120 \n", + "2 Air Jordan 1 2022 2022-04-05 100 \n", + "3 Swift Run 2022 2022-04-04 70 \n", + "4 Nano X1 2022 2022-04-04 135 \n", + ".. ... ... ... ... \n", + "995 Freak Ultra 2022 2022-03-14 180 \n", + "996 Huarache 2022 2022-03-14 68 \n", + "997 Air VaporMax 2022 2022-03-14 200 \n", + "998 Freak Ultra 2022 2022-03-14 180 \n", + "999 Chuck Taylor All Star 2022 2022-03-14 85 \n", + "\n", + " estimatedMarketValue story \\\n", + "0 200 The Nike Air Max 90 Golf ‘Washed Teal’ takes t... \n", + "1 110 NaN \n", + "2 140 NaN \n", + "3 70 NaN \n", + "4 135 NaN \n", + ".. ... ... \n", + "995 250 NaN \n", + "996 150 NaN \n", + "997 175 NaN \n", + "998 250 NaN \n", + "999 85 NaN \n", + "\n", + " image \\\n", + "0 {'360': [], 'original': 'https://image.goat.co... \n", + "1 {'360': [], 'original': 'https://image.goat.co... \n", + "2 {'360': [], 'original': 'https://image.goat.co... \n", + "3 {'360': [], 'original': '', 'small': '', 'thum... \n", + "4 {'360': [], 'original': '', 'small': '', 'thum... \n", + ".. ... \n", + "995 {'360': [], 'original': 'https://image.goat.co... \n", + "996 {'360': [], 'original': 'https://image.goat.co... \n", + "997 {'360': [], 'original': 'https://image.goat.co... \n", + "998 {'360': [], 'original': 'https://image.goat.co... \n", + "999 {'360': [], 'original': 'https://image.goat.co... \n", + "\n", + " links \n", + "0 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "1 {'stockX': 'https://stockx.com/air-jordan-1-lo... \n", + "2 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "3 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "4 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + ".. ... \n", + "995 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "996 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "997 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "998 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "999 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "\n", + "[1000 rows x 14 columns]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.read_csv('data/sneakers.csv')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/.ipynb_checkpoints/Project_2_Web_Scrapping-checkpoint.ipynb b/.ipynb_checkpoints/Project_2_Web_Scrapping-checkpoint.ipynb new file mode 100644 index 0000000..e58e396 --- /dev/null +++ b/.ipynb_checkpoints/Project_2_Web_Scrapping-checkpoint.ipynb @@ -0,0 +1,394 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6745d9ac", + "metadata": {}, + "source": [ + "# Project 2: Web Scrapping and API" + ] + }, + { + "cell_type": "markdown", + "id": "24c27440", + "metadata": {}, + "source": [ + "## Modules imports" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "e495f6f9", + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "import sys\n", + "import requests\n", + "from pathlib import Path\n", + "import datetime\n", + "from time import sleep\n", + "\n", + "import numpy as np\n", + "import pandas as pd\n", + "\n", + "from bs4 import BeautifulSoup" + ] + }, + { + "cell_type": "markdown", + "id": "9351dfe4", + "metadata": {}, + "source": [ + "## Get Content" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ad3ba4d9", + "metadata": {}, + "outputs": [], + "source": [ + "def get_cars_content(content):\n", + " soup = BeautifulSoup(content, 'lxml')\n", + "\n", + " cars_body = soup.select(\".card-body\")\n", + " names = [car.h2.text.strip() for car in cars_body]\n", + " \n", + " details = [car.p.text.strip() for car in cars_body]\n", + " years = [year for car in details for year in re.findall(r\"\\d{4}\", car) ]\n", + " kilometers = [ kilometer.strip() for car in details for kilometer in re.findall(r\"\\W\\d.*\\d+\\W\", car)]\n", + " places = [ place for car in details for place in re.findall(r\"\\s*([\\S]+)$\", car)]\n", + " \n", + " prices_info = soup.select(\".payment-total.payment-highlight\")\n", + " prices = [car.text.strip() for car in prices_info] \n", + "\n", + " return zip(names,years,kilometers,places, prices)" + ] + }, + { + "cell_type": "markdown", + "id": "5c3ea94c", + "metadata": {}, + "source": [ + "## Request information" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "3638a61e", + "metadata": {}, + "outputs": [], + "source": [ + "def request_content(url):\n", + " cars_response = []\n", + " for page in range(1,11):\n", + " print(f\"Request information: {url%page}\")\n", + " response = requests.get(url%page, sleep(2)) \n", + " print(f\"Extracting information from page #{page}\")\n", + " cars_response.append(list((get_cars_content(response.content))))\n", + " sleep(2) \n", + " print('Information extracted successfuly')\n", + " print(10*\"--------\")\n", + " return cars_response" + ] + }, + { + "cell_type": "markdown", + "id": "bc1d8469", + "metadata": {}, + "source": [ + "## Main function" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "10e500ae", + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "def run():\n", + " base_url = \"https://www.kavak.com/mx/page-%s/compra-de-autos\"\n", + " print(\"The information is being extracted from website\")\n", + " sleep(2)\n", + " cars_data = request_content(base_url)\n", + " cars = [car for matrix in cars_data for car in matrix]\n", + " \n", + " print(\"The information has been completed, transforming data: \")\n", + " print(10*\"--------\")\n", + " sleep(3)\n", + " filename = f\"car_sales_kavak.csv\"\n", + " filename = \"data/\"+ filename\n", + " \n", + " print(f\"The file will be named {filename}\")\n", + " df = pd.DataFrame(cars , columns=[\"Car_Name\", \"Years\", \"Kilometers\", \"Places\",\"Prices\"],dtype=object)\n", + " \n", + "\n", + "# # print(df)\n", + " print(10*\"--------\")\n", + " sleep(3)\n", + " df.to_csv(filename, index = False)\n", + " print(f\"{filename} saved.\")\n", + " print(\"Finished.\")\n", + " return df" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b0d1951a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The information is being extracted from website\n", + "Request information: https://www.kavak.com/mx/page-1/compra-de-autos\n", + "Extracting information from page #1\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-2/compra-de-autos\n", + "Extracting information from page #2\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-3/compra-de-autos\n", + "Extracting information from page #3\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-4/compra-de-autos\n", + "Extracting information from page #4\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-5/compra-de-autos\n", + "Extracting information from page #5\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-6/compra-de-autos\n", + "Extracting information from page #6\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-7/compra-de-autos\n", + "Extracting information from page #7\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-8/compra-de-autos\n", + "Extracting information from page #8\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-9/compra-de-autos\n", + "Extracting information from page #9\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-10/compra-de-autos\n", + "Extracting information from page #10\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "The information has been completed, transforming data: \n", + "--------------------------------------------------------------------------------\n", + "The file will be named data/car_sales_kavak.csv\n", + "--------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "run()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "4035eecd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Car_NameYearsKilometersPlacesPrices
0Kia Soul EX201762,170Monterrey$249,999
1Chevrolet Cruze LS Turbo201772,910Monterrey$194,999
2Honda Accord EXL2015105,360Monterrey$265,999
3Audi Q7 Quattro S Line 3.0T2012111,450Monterrey$304,999
4Infiniti Q50 Híbrido201783,440Monterrey$396,999
..................
354Hyundai Creta Limited2019109,700Monterrey$388,999
355Chevrolet Sonic LS (Línea anterior)201695,100Monterrey$174,999
356Dodge Journey SE2015116,500Monterrey$254,999
357Volkswagen Passat CC 2.0T201699,500Monterrey$312,999
358Nissan Sentra Sense201763,000Monterrey$222,999
\n", + "

359 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " Car_Name Years Kilometers Places \\\n", + "0 Kia Soul EX 2017 62,170 Monterrey \n", + "1 Chevrolet Cruze LS Turbo 2017 72,910 Monterrey \n", + "2 Honda Accord EXL 2015 105,360 Monterrey \n", + "3 Audi Q7 Quattro S Line 3.0T 2012 111,450 Monterrey \n", + "4 Infiniti Q50 Híbrido 2017 83,440 Monterrey \n", + ".. ... ... ... ... \n", + "354 Hyundai Creta Limited 2019 109,700 Monterrey \n", + "355 Chevrolet Sonic LS (Línea anterior) 2016 95,100 Monterrey \n", + "356 Dodge Journey SE 2015 116,500 Monterrey \n", + "357 Volkswagen Passat CC 2.0T 2016 99,500 Monterrey \n", + "358 Nissan Sentra Sense 2017 63,000 Monterrey \n", + "\n", + " Prices \n", + "0 $249,999 \n", + "1 $194,999 \n", + "2 $265,999 \n", + "3 $304,999 \n", + "4 $396,999 \n", + ".. ... \n", + "354 $388,999 \n", + "355 $174,999 \n", + "356 $254,999 \n", + "357 $312,999 \n", + "358 $222,999 \n", + "\n", + "[359 rows x 5 columns]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv('./data/car_sales_kavak.csv')\n", + "df" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Project_2_API.ipynb b/Project_2_API.ipynb new file mode 100644 index 0000000..3464a07 --- /dev/null +++ b/Project_2_API.ipynb @@ -0,0 +1,508 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "c5500461", + "metadata": {}, + "source": [ + "# Project API" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "72527bdd", + "metadata": {}, + "outputs": [], + "source": [ + "import requests \n", + "import pandas as pd\n", + "from time import sleep\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "id": "cfd73b47", + "metadata": {}, + "source": [ + "## Data Extraction Function" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ee341e04", + "metadata": {}, + "outputs": [], + "source": [ + "def get_data(url,headers):\n", + " responses = []\n", + " for page in range(1, 11):\n", + " sleep(2)\n", + " print(f\"Requesting {url%page} to server\")\n", + " sleep(2)\n", + " response = requests.request(\"GET\", url%page, headers=headers)\n", + " response = response.json() \n", + " responses.append(response['results'])\n", + " print(f\"Response extracted successfully\")\n", + " print(10*\"--------\")\n", + "# responses.append(response)\n", + " return responses" + ] + }, + { + "cell_type": "markdown", + "id": "0c7fad35", + "metadata": {}, + "source": [ + "## Data Transformation Function" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "9d7e246e", + "metadata": {}, + "outputs": [], + "source": [ + "def convert_csv(response):\n", + " print(\"Preparing information to be ready in file\")\n", + " sleep(2)\n", + " flat_data = [final_data for matrix in response for final_data in matrix]\n", + " df = pd.DataFrame(flat_data)\n", + " parse = df.to_csv(\"./data/sneakers.csv\", index=False)\n", + " print(\"File ready on data folder with name 'sneakers.csv'\")\n", + " print(10*\"--------\")\n", + " sleep(2)\n", + " return parse\n" + ] + }, + { + "cell_type": "markdown", + "id": "f925eb2e", + "metadata": {}, + "source": [ + "## General Function" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "4497a1a7", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The information is requested from API\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=1 to server\n", + "Response extracted successfully\n", + "--------------------------------------------------------------------------------\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=2 to server\n", + "Response extracted successfully\n", + "--------------------------------------------------------------------------------\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=3 to server\n" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [7]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 9\u001b[0m df \u001b[38;5;241m=\u001b[39m convert_csv(response) \n\u001b[1;32m 11\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;18m__name__\u001b[39m \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m__main__\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[0;32m---> 12\u001b[0m \u001b[43mrun\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", + "Input \u001b[0;32mIn [7]\u001b[0m, in \u001b[0;36mrun\u001b[0;34m()\u001b[0m\n\u001b[1;32m 6\u001b[0m url \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mhttps://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=\u001b[39m\u001b[38;5;132;01m%s\u001b[39;00m\u001b[38;5;124m'\u001b[39m\n\u001b[1;32m 7\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mThe information is requested from API\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m----> 8\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[43mget_data\u001b[49m\u001b[43m(\u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43mheaders\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 9\u001b[0m df \u001b[38;5;241m=\u001b[39m convert_csv(response)\n", + "Input \u001b[0;32mIn [2]\u001b[0m, in \u001b[0;36mget_data\u001b[0;34m(url, headers)\u001b[0m\n\u001b[1;32m 4\u001b[0m sleep(\u001b[38;5;241m2\u001b[39m)\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mRequesting \u001b[39m\u001b[38;5;132;01m{\u001b[39;00murl\u001b[38;5;241m%\u001b[39mpage\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m to server\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m----> 6\u001b[0m \u001b[43msleep\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 7\u001b[0m response \u001b[38;5;241m=\u001b[39m requests\u001b[38;5;241m.\u001b[39mrequest(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mGET\u001b[39m\u001b[38;5;124m\"\u001b[39m, url\u001b[38;5;241m%\u001b[39mpage, headers\u001b[38;5;241m=\u001b[39mheaders)\n\u001b[1;32m 8\u001b[0m response \u001b[38;5;241m=\u001b[39m response\u001b[38;5;241m.\u001b[39mjson() \n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + } + ], + "source": [ + "def run():\n", + " headers = {\n", + "\t\"X-RapidAPI-Host\": \"the-sneaker-database.p.rapidapi.com\",\n", + "\t\"X-RapidAPI-Key\"\n", + " }\n", + " url = 'https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=%s'\n", + " print(\"The information is requested from API\")\n", + " response = get_data(url,headers)\n", + " df = convert_csv(response) \n", + " \n", + "if __name__ == \"__main__\":\n", + " run()" + ] + }, + { + "cell_type": "markdown", + "id": "91a96f13", + "metadata": {}, + "source": [ + "## Read file" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "c36f093e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idskubrandnamecolorwaygendersilhouettereleaseYearreleaseDateretailPriceestimatedMarketValuestoryimagelinks
0b274a3f7-7211-42de-81ec-01802a0b0853DO6492-141NikeAir Max 90 Golf 'Washed Teal'Sail/Pearl White/Light Orewood Brown/Washed TealmenAir Max 9020222022-04-05150200The Nike Air Max 90 Golf ‘Washed Teal’ takes t...{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
1bf17d1b0-82e7-46de-b78a-6ec0fe748f17DO0750-002JordanJordan 1 Low SE Sherpa Fleece (W)College Grey/Particle Grey/Neutral Grey/WhitewomenAir Jordan 120222022-04-05120110NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': 'https://stockx.com/air-jordan-1-lo...
2cbcf2b91-c213-4b84-b6fa-12e69651c4bfDC0774-114JordanWmns Air Jordan 1 Low 'Marina Blue'White/Dark Marina BluewomenAir Jordan 120222022-04-05100140NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
301903417-7f84-46f3-b946-44dca028cc7dGZ1554adidasSwift Run 22 J 'White Black'Cloud White/Core Black/Cloud WhiteyouthSwift Run20222022-04-047070NaN{'360': [], 'original': '', 'small': '', 'thum...{'stockX': '', 'goat': 'https://goat.com/sneak...
411492de7-ed5b-4e06-82bf-12eb96ed08c0GY1972ReebokWmns Nano X1 'Pure Grey Hint Mint'Pure Grey 1/Hint Mint/Pure Grey 3womenNano X120222022-04-04135135NaN{'360': [], 'original': '', 'small': '', 'thum...{'stockX': '', 'goat': 'https://goat.com/sneak...
.............................................
995b34b98a7-1680-4401-a824-4a49c8ee0dd0GX7979adidasFreak Ultra 22 'White Gold Metallic'Cloud White/Gold Metallic/Cloud WhitemenFreak Ultra20222022-03-14180250NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
996b6bd4804-cec1-4ed7-817e-322dd5343483704949-012NikeHuarache Run PS 'Cool Grey'Cool Grey/Wolf Grey/White/Cool GreyyouthHuarache20222022-03-1468150NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
997b764d270-d7eb-49dd-ba61-2a25a7655e78DO5886-900NikeWmns Air Vapormax 2021 Flyknit 'Multi-Color'Multi-Color/Lime Glow/Racer Pink/BlackwomenAir VaporMax20222022-03-14200175NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
998cc68a042-f2c2-4d0e-92cb-8e3ee563a122GX5131adidasFreak Ultra 22 'White Silver Metallic'Cloud White/Silver Metallic/Clear GreymenFreak Ultra20222022-03-14180250NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
999cfcaf8f4-3e1e-46bd-bd91-bb3a04db282dCU1722-960ConverseChuck Taylor All Star High CustomMulti-Color/Multi-ColormenChuck Taylor All Star20222022-03-148585NaN{'360': [], 'original': 'https://image.goat.co...{'stockX': '', 'goat': 'https://goat.com/sneak...
\n", + "

1000 rows × 14 columns

\n", + "
" + ], + "text/plain": [ + " id sku brand \\\n", + "0 b274a3f7-7211-42de-81ec-01802a0b0853 DO6492-141 Nike \n", + "1 bf17d1b0-82e7-46de-b78a-6ec0fe748f17 DO0750-002 Jordan \n", + "2 cbcf2b91-c213-4b84-b6fa-12e69651c4bf DC0774-114 Jordan \n", + "3 01903417-7f84-46f3-b946-44dca028cc7d GZ1554 adidas \n", + "4 11492de7-ed5b-4e06-82bf-12eb96ed08c0 GY1972 Reebok \n", + ".. ... ... ... \n", + "995 b34b98a7-1680-4401-a824-4a49c8ee0dd0 GX7979 adidas \n", + "996 b6bd4804-cec1-4ed7-817e-322dd5343483 704949-012 Nike \n", + "997 b764d270-d7eb-49dd-ba61-2a25a7655e78 DO5886-900 Nike \n", + "998 cc68a042-f2c2-4d0e-92cb-8e3ee563a122 GX5131 adidas \n", + "999 cfcaf8f4-3e1e-46bd-bd91-bb3a04db282d CU1722-960 Converse \n", + "\n", + " name \\\n", + "0 Air Max 90 Golf 'Washed Teal' \n", + "1 Jordan 1 Low SE Sherpa Fleece (W) \n", + "2 Wmns Air Jordan 1 Low 'Marina Blue' \n", + "3 Swift Run 22 J 'White Black' \n", + "4 Wmns Nano X1 'Pure Grey Hint Mint' \n", + ".. ... \n", + "995 Freak Ultra 22 'White Gold Metallic' \n", + "996 Huarache Run PS 'Cool Grey' \n", + "997 Wmns Air Vapormax 2021 Flyknit 'Multi-Color' \n", + "998 Freak Ultra 22 'White Silver Metallic' \n", + "999 Chuck Taylor All Star High Custom \n", + "\n", + " colorway gender \\\n", + "0 Sail/Pearl White/Light Orewood Brown/Washed Teal men \n", + "1 College Grey/Particle Grey/Neutral Grey/White women \n", + "2 White/Dark Marina Blue women \n", + "3 Cloud White/Core Black/Cloud White youth \n", + "4 Pure Grey 1/Hint Mint/Pure Grey 3 women \n", + ".. ... ... \n", + "995 Cloud White/Gold Metallic/Cloud White men \n", + "996 Cool Grey/Wolf Grey/White/Cool Grey youth \n", + "997 Multi-Color/Lime Glow/Racer Pink/Black women \n", + "998 Cloud White/Silver Metallic/Clear Grey men \n", + "999 Multi-Color/Multi-Color men \n", + "\n", + " silhouette releaseYear releaseDate retailPrice \\\n", + "0 Air Max 90 2022 2022-04-05 150 \n", + "1 Air Jordan 1 2022 2022-04-05 120 \n", + "2 Air Jordan 1 2022 2022-04-05 100 \n", + "3 Swift Run 2022 2022-04-04 70 \n", + "4 Nano X1 2022 2022-04-04 135 \n", + ".. ... ... ... ... \n", + "995 Freak Ultra 2022 2022-03-14 180 \n", + "996 Huarache 2022 2022-03-14 68 \n", + "997 Air VaporMax 2022 2022-03-14 200 \n", + "998 Freak Ultra 2022 2022-03-14 180 \n", + "999 Chuck Taylor All Star 2022 2022-03-14 85 \n", + "\n", + " estimatedMarketValue story \\\n", + "0 200 The Nike Air Max 90 Golf ‘Washed Teal’ takes t... \n", + "1 110 NaN \n", + "2 140 NaN \n", + "3 70 NaN \n", + "4 135 NaN \n", + ".. ... ... \n", + "995 250 NaN \n", + "996 150 NaN \n", + "997 175 NaN \n", + "998 250 NaN \n", + "999 85 NaN \n", + "\n", + " image \\\n", + "0 {'360': [], 'original': 'https://image.goat.co... \n", + "1 {'360': [], 'original': 'https://image.goat.co... \n", + "2 {'360': [], 'original': 'https://image.goat.co... \n", + "3 {'360': [], 'original': '', 'small': '', 'thum... \n", + "4 {'360': [], 'original': '', 'small': '', 'thum... \n", + ".. ... \n", + "995 {'360': [], 'original': 'https://image.goat.co... \n", + "996 {'360': [], 'original': 'https://image.goat.co... \n", + "997 {'360': [], 'original': 'https://image.goat.co... \n", + "998 {'360': [], 'original': 'https://image.goat.co... \n", + "999 {'360': [], 'original': 'https://image.goat.co... \n", + "\n", + " links \n", + "0 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "1 {'stockX': 'https://stockx.com/air-jordan-1-lo... \n", + "2 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "3 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "4 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + ".. ... \n", + "995 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "996 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "997 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "998 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "999 {'stockX': '', 'goat': 'https://goat.com/sneak... \n", + "\n", + "[1000 rows x 14 columns]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.read_csv('data/sneakers.csv')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Project_2_Web_Scrapping.ipynb b/Project_2_Web_Scrapping.ipynb new file mode 100644 index 0000000..da7fb7b --- /dev/null +++ b/Project_2_Web_Scrapping.ipynb @@ -0,0 +1,539 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "6745d9ac", + "metadata": {}, + "source": [ + "# Project 2: Web Scrapping and API" + ] + }, + { + "cell_type": "markdown", + "id": "24c27440", + "metadata": {}, + "source": [ + "## Modules imports" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "e495f6f9", + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "import sys\n", + "import requests\n", + "from pathlib import Path\n", + "import datetime\n", + "from time import sleep\n", + "\n", + "import numpy as np\n", + "import pandas as pd\n", + "\n", + "from bs4 import BeautifulSoup" + ] + }, + { + "cell_type": "markdown", + "id": "9351dfe4", + "metadata": {}, + "source": [ + "## Get Content" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "ad3ba4d9", + "metadata": {}, + "outputs": [], + "source": [ + "def get_cars_content(content):\n", + " soup = BeautifulSoup(content, 'lxml')\n", + "\n", + " cars_body = soup.select(\".card-body\")\n", + " names = [car.h2.text.strip() for car in cars_body]\n", + " \n", + " details = [car.p.text.strip() for car in cars_body]\n", + " years = [year for car in details for year in re.findall(r\"\\d{4}\", car) ]\n", + " kilometers = [ kilometer.strip() for car in details for kilometer in re.findall(r\"\\W\\d.*\\d+\\W\", car)]\n", + " places = [ place for car in details for place in re.findall(r\"\\s*([\\S]+)$\", car)]\n", + " \n", + " prices_info = soup.select(\".payment-total.payment-highlight\")\n", + " prices = [car.text.strip() for car in prices_info] \n", + "\n", + " return zip(names,years,kilometers,places, prices)" + ] + }, + { + "cell_type": "markdown", + "id": "5c3ea94c", + "metadata": {}, + "source": [ + "## Request information" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "3638a61e", + "metadata": {}, + "outputs": [], + "source": [ + "def request_content(url):\n", + " cars_response = []\n", + " for page in range(1,11):\n", + " print(f\"Request information: {url%page}\")\n", + " response = requests.get(url%page, sleep(2)) \n", + " print(f\"Extracting information from page #{page}\")\n", + " cars_response.append(list((get_cars_content(response.content))))\n", + " sleep(2) \n", + " print('Information extracted successfuly')\n", + " print(10*\"--------\")\n", + " return cars_response" + ] + }, + { + "cell_type": "markdown", + "id": "bc1d8469", + "metadata": {}, + "source": [ + "## Main function" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "10e500ae", + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "def run():\n", + " base_url = \"https://www.kavak.com/mx/page-%s/compra-de-autos\"\n", + " print(\"The information is being extracted from website\")\n", + " sleep(2)\n", + " cars_data = request_content(base_url)\n", + " cars = [car for matrix in cars_data for car in matrix]\n", + " \n", + " print(\"The information has been completed, transforming data: \")\n", + " print(10*\"--------\")\n", + " sleep(3)\n", + " filename = f\"car_sales_kavak.csv\"\n", + " filename = \"data/\"+ filename\n", + " \n", + " print(f\"The file will be named {filename}\")\n", + " df = pd.DataFrame(cars , columns=[\"Car_Name\", \"Years\", \"Kilometers\", \"Places\",\"Prices\"],dtype=object)\n", + " \n", + "\n", + "# # print(df)\n", + " print(10*\"--------\")\n", + " sleep(3)\n", + " df.to_csv(filename, index = False)\n", + " print(f\"{filename} saved.\")\n", + " print(\"Finished.\")\n", + " return df" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "b0d1951a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The information is being extracted from website\n", + "Request information: https://www.kavak.com/mx/page-1/compra-de-autos\n", + "Extracting information from page #1\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-2/compra-de-autos\n", + "Extracting information from page #2\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-3/compra-de-autos\n", + "Extracting information from page #3\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-4/compra-de-autos\n", + "Extracting information from page #4\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-5/compra-de-autos\n", + "Extracting information from page #5\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-6/compra-de-autos\n", + "Extracting information from page #6\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-7/compra-de-autos\n", + "Extracting information from page #7\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-8/compra-de-autos\n", + "Extracting information from page #8\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-9/compra-de-autos\n", + "Extracting information from page #9\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "Request information: https://www.kavak.com/mx/page-10/compra-de-autos\n", + "Extracting information from page #10\n", + "Information extracted successfuly\n", + "--------------------------------------------------------------------------------\n", + "The information has been completed, transforming data: \n", + "--------------------------------------------------------------------------------\n", + "The file will be named data/car_sales_kavak.csv\n", + "--------------------------------------------------------------------------------\n", + "data/car_sales_kavak.csv saved.\n", + "Finished.\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Car_NameYearsKilometersPlacesPrices
0Kia Soul EX201762,170Monterrey$249,999
1Chevrolet Cruze LS Turbo201772,910Monterrey$194,999
2Honda Accord EXL2015105,360Monterrey$265,999
3Infiniti Q50 Híbrido201783,440Monterrey$396,999
4Mazda MX-5 I Sport201753,960Monterrey$310,999
..................
354Nissan Altima Advance Navi201762,500Monterrey$303,999
355Hyundai Creta Limited2019109,700Monterrey$388,999
356Chevrolet Sonic LS (Línea anterior)201695,100Monterrey$174,999
357Dodge Journey SE2015116,500Monterrey$254,999
358Volkswagen Passat CC 2.0T201699,500Monterrey$312,999
\n", + "

359 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " Car_Name Years Kilometers Places Prices\n", + "0 Kia Soul EX 2017 62,170 Monterrey $249,999\n", + "1 Chevrolet Cruze LS Turbo 2017 72,910 Monterrey $194,999\n", + "2 Honda Accord EXL 2015 105,360 Monterrey $265,999\n", + "3 Infiniti Q50 Híbrido 2017 83,440 Monterrey $396,999\n", + "4 Mazda MX-5 I Sport 2017 53,960 Monterrey $310,999\n", + ".. ... ... ... ... ...\n", + "354 Nissan Altima Advance Navi 2017 62,500 Monterrey $303,999\n", + "355 Hyundai Creta Limited 2019 109,700 Monterrey $388,999\n", + "356 Chevrolet Sonic LS (Línea anterior) 2016 95,100 Monterrey $174,999\n", + "357 Dodge Journey SE 2015 116,500 Monterrey $254,999\n", + "358 Volkswagen Passat CC 2.0T 2016 99,500 Monterrey $312,999\n", + "\n", + "[359 rows x 5 columns]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "run()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "4035eecd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Car_NameYearsKilometersPlacesPrices
0Kia Soul EX201762,170Monterrey$249,999
1Chevrolet Cruze LS Turbo201772,910Monterrey$194,999
2Honda Accord EXL2015105,360Monterrey$265,999
3Infiniti Q50 Híbrido201783,440Monterrey$396,999
4Mazda MX-5 I Sport201753,960Monterrey$310,999
..................
354Nissan Altima Advance Navi201762,500Monterrey$303,999
355Hyundai Creta Limited2019109,700Monterrey$388,999
356Chevrolet Sonic LS (Línea anterior)201695,100Monterrey$174,999
357Dodge Journey SE2015116,500Monterrey$254,999
358Volkswagen Passat CC 2.0T201699,500Monterrey$312,999
\n", + "

359 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " Car_Name Years Kilometers Places \\\n", + "0 Kia Soul EX 2017 62,170 Monterrey \n", + "1 Chevrolet Cruze LS Turbo 2017 72,910 Monterrey \n", + "2 Honda Accord EXL 2015 105,360 Monterrey \n", + "3 Infiniti Q50 Híbrido 2017 83,440 Monterrey \n", + "4 Mazda MX-5 I Sport 2017 53,960 Monterrey \n", + ".. ... ... ... ... \n", + "354 Nissan Altima Advance Navi 2017 62,500 Monterrey \n", + "355 Hyundai Creta Limited 2019 109,700 Monterrey \n", + "356 Chevrolet Sonic LS (Línea anterior) 2016 95,100 Monterrey \n", + "357 Dodge Journey SE 2015 116,500 Monterrey \n", + "358 Volkswagen Passat CC 2.0T 2016 99,500 Monterrey \n", + "\n", + " Prices \n", + "0 $249,999 \n", + "1 $194,999 \n", + "2 $265,999 \n", + "3 $396,999 \n", + "4 $310,999 \n", + ".. ... \n", + "354 $303,999 \n", + "355 $388,999 \n", + "356 $174,999 \n", + "357 $254,999 \n", + "358 $312,999 \n", + "\n", + "[359 rows x 5 columns]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv('./data/car_sales_kavak.csv')\n", + "df" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.9" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/README.md b/README.md index 85c9529..169c370 100644 --- a/README.md +++ b/README.md @@ -1,67 +1,47 @@ -![IronHack Logo](https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_d5c5793015fec3be28a63c4fa3dd4d55.png) +# Web Scrapper and API data extraction +Ironhack Logo -# Project: API & Web Data Scraping and Web Data Pipeline +*[by Francisco Ponce]* -## Overview +## Project Content -The goal of this project is for you to practice what you have learned in the APIs and Web Scraping chapter of this program. For this project, you will choose both an API to obtain data from and a web page to scrape. For the API portion of the project will need to make calls to your chosen API, successfully obtain a response, request data, convert it into a Pandas data frame, and export it as a CSV file. For the web scraping portion of the project, you will need to scrape the HTML from your chosen page, parse the HTML to extract the necessary information, and either save the results to a text (txt) file if it is text or into a CSV file if it is tabular data. -Aditionally, after you obtain both CSV files you will practice what you have learned in the Intermediate Python and Data Engineering chapter of this program. You will need to import the CSV files and use your newly-acquired skills to build a data pipeline that processes the data and produces a result. You should demonstrate your proficiency with the tools we covered (functions, list comprehensions, string operations, and error handling) in your pipeline. +``` +Web-Project + ├── README.md + ├── Project_2_Web_Scrapping.ipynb + ├── Project_2_API.ipynb + └── data +   ├── car_sales_kavak.csv +    └── sneakers.csv + ``` -**You will be working individually for this project**, but we'll be guiding you along the process and helping you as you go. Show us what you've got! +### Web Scrapper: Kavak Marketplace ---- +I'm interested to know details of the cars that are sold in the [Kavak's](https://www.kavak.com/mx/compra-de-autos) marketplace. I extracted the following data from the grid: -## Technical Requirements +- Model +- Year +- Place +- Kilometers (mileage) +- Price -The technical requirements for this project are as follows: +The pattern I followed was the pagination on params queries of the url `https://www.kavak.com/mx/page-pattern/compra-de-autos`, therefore the general information of 360 cars were outputed in a csv file for further analysis. The outputed file will be created on a **data** folder with the name **cars_marketplace_kavak**. -* You must obtain data from an API using Python. -* You must scrape and clean HTML from a web page using Python. -* The results should be two files - one containing the tabular results of your API request and the other containing the results of your web page scrape. -* Your code should be saved in a Jupyter Notebook and your results should be saved in a folder named output. +### Web Scrapper: Sneakers API -* You must construct a data pipeline with the majority of your code wrapped in functions. -* Each data pipeline stage should be covered: acquisition, wrangling, analysis, and reporting. -* You must demonstrate all the topics we covered in the chapter (functions, list comprehensions, string operations, and error handling) in your processing of the data. -* There should be some data set that gets imported and some result that gets exported. -* Your code should be saved in a Python executable file (.py), your data should be saved in a folder named data, and your results should be saved in a folder named output. +As a sneakers lover I'm looking forward to know the latest trends on sneakers. In order to succeed it, [the Sneakers API](https://the-sneaker-database.p.rapidapi.com/sneakers) became more than handy. -* You should include a README.md file that describes the steps you took and your thought process for obtaining data from the API and web page. +To run our yeezy script, you need to get a [Rapid-Key](https://rapidapi.com/hub) so we can test the script. Another con is that our petitions are limited by a mothly fee so use them wisely! +#### Example +``` + headers = { + "X-RapidAPI-Host": "the-sneaker-database.p.rapidapi.com", + "X-RapidAPI-Key": "your key" + } -## Necessary Deliverables - -The following deliverables should be pushed to your Github repo for this chapter. - -* **A Jupyter Notebook (.ipynb) file** that contains the code used to work with your API and scrape your web page. -* **An output folder** containing the outputs of your API and scraping efforts. -* **A Python (.py) code file** that contains the code for your data pipeline. -* **A data folder** containing your data set. -* **An output folder** containing the output of your data pipeline. -* **A ``README.md`` file** containing a detailed explanation of your approach and code for retrieving data from the API and scraping the web page as well as your results, obstacles encountered, and lessons learned. - -## Suggested Ways to Get Started - -* **Find an API to work with** - a great place to start looking would be [API List](https://apilist.fun/) and [Public APIs](https://github.com/toddmotto/public-apis). If you need authorization for your chosen API, make sure to give yourself enough time for the service to review and accept your application. Have a couple back-up APIs chosen just in case! -* **Find a web page to scrape** and determine the content you would like to scrape from it - blogs and news sites are typically good candidates for scraping text content, and [Wikipedia](https://www.wikipedia.org/) is usually a good source for HTML tables (search for "list of..."). -* **Examine the data and come up with a deliverable** before diving in and applying any methods to it. -* **Break the project down into different steps** - note the steps covered in the API and web scraping lessons, try to follow them, and make adjustments as you encounter the obstacles that are inevitable due to all APIs and web pages being different. -* **Use the tools in your tool kit** - your knowledge of intermediate Python as well as some of the things you've learned in previous chapters. This is a great way to start tying everything you've learned together! -* **Work through the lessons in class** & ask questions when you need to! Think about adding relevant code to your project each night, instead of, you know... _procrastinating_. -* **Commit early, commit often**, don’t be afraid of doing something incorrectly because you can always roll back to a previous version. -* **Consult documentation and resources provided** to better understand the tools you are using and how to accomplish what you want. - -## Useful Resources API and Web Data Scraping - -* [Requests Library Documentation: Quickstart](http://docs.python-requests.org/en/master/user/quickstart/) -* [BeautifulSoup Documentation](https://www.crummy.com/software/BeautifulSoup/bs4/doc/) -* [Stack Overflow Python Requests Questions](https://stackoverflow.com/questions/tagged/python-requests) -* [StackOverflow BeautifulSoup Questions](https://stackoverflow.com/questions/tagged/beautifulsoup) - -## Useful Resources Web Data Pipeline - -* [Python Functional Programming How To Documentation](https://docs.python.org/3.7/howto/functional.html) -* [Python List Comprehensions Documentation](https://docs.python.org/3/tutorial/datastructures.html#list-comprehensions) -* [Python Errors and Exceptions Documentation](https://docs.python.org/3/tutorial/errors.html) -* [StackOverflow String Operation Questions](https://stackoverflow.com/questions/tagged/string+python) + base_url = 'https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=%s' +``` + +Once we add our keys, you only need to run the script and wait for the data extraction, in order to handle the maximun number of logs per request, each response will be of 100 sneakers logs. Finally, the file will be automatically generated in a **data** folder with the name **sneakers.csv**. \ No newline at end of file diff --git a/data/.DS_Store b/data/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5ba8c0a443bd90856816fe2709ec501e621ea5a4 GIT binary patch literal 6148 zcmeH~Jx&8b425k-5s4-e4dt955;s_)P*8IKAb~0?MIuV-?Kn1k{sARgkftQ4r@DJ9&~`UciS@_4f(mUdkHYE1YBg zhTH+)$ei1|nDNqW0 zDPZ4+h8uQ?L!f^;2tERU6Vh(1eU<>5CBQCm2qc4PP{E*Tju;wr@-6GS#33-~qJA^a z$(uDN6!qK5H!m0M0xOmRrNF5I=dqnx|G&k5nEy{nwJQZmfq$idPL}t}1+SF7b@X!9 uYa9NEe;T!3PViO?dMjpQt@!GwuGyONE^!ESI(esq^+&*TDJup3LV*u0FdmEm literal 0 HcmV?d00001 diff --git a/data/car_sales_kavak.csv b/data/car_sales_kavak.csv new file mode 100644 index 0000000..05aea94 --- /dev/null +++ b/data/car_sales_kavak.csv @@ -0,0 +1,360 @@ +Car_Name,Years,Kilometers,Places,Prices +Kia Soul EX,2017,"62,170",Monterrey,"$249,999" +Chevrolet Cruze LS Turbo,2017,"72,910",Monterrey,"$194,999" +Honda Accord EXL,2015,"105,360",Monterrey,"$265,999" +Infiniti Q50 Híbrido,2017,"83,440",Monterrey,"$396,999" +Mazda MX-5 I Sport,2017,"53,960",Monterrey,"$310,999" +Toyota Camry XLE,2015,"71,350",Monterrey,"$245,999" +Bmw Serie 6 650i Gran Coupé,2016,"30,324",Monterrey,"$799,999" +Ford Edge SEL Plus,2016,"106,640",Monterrey,"$387,999" +Jeep Grand Cherokee Summit HEMI,2015,"98,550",Monterrey,"$517,999" +Buick Enclave Premium,2017,"65,910",Monterrey,"$424,999" +Bmw I3 Hatch Back i3 Rex Dynamic Híbrido,2017,"77,380",Monterrey,"$603,999" +Ford Fusion Sport V6 EcoBoost,2017,"17,290",Monterrey,"$421,999" +Mazda 3 s,2017,"56,535",México,"$264,999" +Infiniti Q50 Híbrido,2017,"89,340",México,"$399,999" +Infiniti Q70 Perfection,2016,"67,400",Monterrey,"$439,999" +Jeep Grand Cherokee Limited Lujo,2019,"21,760",Monterrey,"$763,999" +Chevrolet Cruze LT Turbo,2017,"64,200",Monterrey,"$224,999" +Seat Leon Style 1.4T,2016,"87,299",Monterrey,"$236,999" +Renault Koleos Iconic,2019,"33,700",Monterrey,"$465,999" +Nissan X Trail Híbrido,2018,"90,000",Monterrey,"$497,999" +Ford Explorer Limited,2015,"69,000",Monterrey,"$423,999" +Volkswagen Vento Comfortline,2019,"59,000",Monterrey,"$250,999" +Toyota RAV4 XLE,2020,"40,000",Monterrey,"$550,999" +Chevrolet Aveo LS,2019,"65,000",Monterrey,"$198,999" +Volkswagen Gol Trendline,2018,"54,600",Monterrey,"$207,999" +Kia Sorento EX,2017,"112,700",Monterrey,"$408,999" +Suzuki Vitara GLX,2018,"70,600",Monterrey,"$355,999" +Dodge Durango Limited,2014,"113,400",Monterrey,"$374,999" +Mercedes Benz Clase Cla CLA250 CGI Sport,2019,"40,600",Monterrey,"$600,999" +Hyundai Ioniq GLS Limited Híbrido,2018,"76,000",Monterrey,"$403,999" +Volkswagen Vento Comfortline,2019,"50,600",Monterrey,"$248,999" +Chevrolet Beat LTZ,2020,"32,000",Monterrey,"$232,999" +Kia Rio LX,2019,"39,500",Monterrey,"$267,999" +Jeep Renegade Sport,2017,"61,300",Monterrey,"$330,999" +Chevrolet Trax LT (Línea anterior),2016,"73,300",Monterrey,"$251,999" +Peugeot Partner Maxi Pack,2020,"53,400",Monterrey,"$324,999" +Honda Accord LX,2014,"113,000",Monterrey,"$225,999" +Hyundai Grand i10 Hatch Back GL MID,2016,"112,300",Monterrey,"$164,999" +Toyota Yaris HB S,2018,"71,500",Monterrey,"$278,999" +Chevrolet Trax LT (Línea anterior),2016,"85,600",Monterrey,"$251,999" +Nissan X Trail Exclusive,2020,"25,300",Monterrey,"$552,999" +Ford Eco Sport Trend,2020,"62,700",Monterrey,"$380,999" +Chevrolet Cavalier Premier,2018,"25,400",Monterrey,"$253,999" +Volkswagen Jetta A6 Comfortline,2017,"108,800",Monterrey,"$278,999" +Volkswagen Tiguan Comfortline,2018,"71,100",Monterrey,"$489,999" +Volkswagen Gol Trendline,2018,"55,000",Monterrey,"$196,999" +Chevrolet Beat LTZ,2020,"32,300",Monterrey,"$221,999" +Honda Pilot Touring,2016,"102,800",Monterrey,"$470,999" +Kia Rio LX,2021,"15,500",Monterrey,"$298,999" +Volkswagen Vento Comfortline,2019,"16,000",Monterrey,"$255,999" +Ford Focus Titanium,2016,"71,800",Monterrey,"$265,999" +Toyota Hilux Doble Cab Mid,2019,"54,400",Monterrey,"$456,999" +Nissan March Hatch Back Sense,2018,"93,600",Monterrey,"$178,999" +Chevrolet Aveo LS (Línea anterior),2017,"91,000",Monterrey,"$154,999" +Buick Regal GS,2016,"82,300",Monterrey,"$309,999" +Volkswagen Tiguan Trendline,2018,"82,500",Monterrey,"$402,999" +Mazda CX-5 i,2019,"40,800",Monterrey,"$431,999" +Kia Rio LX,2017,"83,300",Monterrey,"$210,999" +Chevrolet Aveo LTZ (Línea nueva),2018,"67,800",Monterrey,"$211,999" +Seat Ateca Xcellence,2017,"61,600",Monterrey,"$428,999" +Nissan Versa Sense,2018,"77,700",Monterrey,"$208,999" +Gmc Acadia Denali,2017,"58,000",Monterrey,"$517,999" +Toyota Sienna XLE Limited,2015,"102,700",Monterrey,"$449,999" +Dodge Dart SXT,2015,"103,300",Monterrey,"$179,999" +Chevrolet Traverse LT,2016,"86,000",Monterrey,"$378,999" +Chevrolet Aveo LTZ,2019,"49,800",Monterrey,"$227,999" +Honda Odyssey Touring,2012,"129,500",Monterrey,"$274,999" +Bmw Serie 1 Hatch Back 120i Urban Line,2017,"81,500",Monterrey,"$359,999" +Renault Duster Dynamique,2017,"74,000",Monterrey,"$232,999" +Kia Rio LX,2018,"38,700",Monterrey,"$249,999" +Ford Figo Impulse,2018,"74,000",Monterrey,"$178,999" +Chevrolet Camaro LT (Cambio de línea),2014,"99,200",Monterrey,"$342,999" +Nissan Sentra Sense,2016,"118,300",Monterrey,"$201,999" +Volkswagen Jetta A6 Sportline,2015,"124,400",Monterrey,"$256,999" +Volkswagen Jetta A6 Live,2016,"103,500",Monterrey,"$224,999" +Ford Explorer Sport,2018,"100,200",Monterrey,"$627,999" +Nissan X Trail Advance,2015,"100,000",Monterrey,"$299,999" +Nissan X Trail Sense,2016,"128,100",Monterrey,"$280,999" +Suzuki Grand Vitara GLS,2013,"125,700",Monterrey,"$214,999" +Volkswagen Beetle Hatch Back Sport,2014,"97,600",Monterrey,"$233,999" +Kia Rio LX,2018,"84,000",Monterrey,"$258,999" +Kia Sportage LX,2020,"26,000",Monterrey,"$451,999" +Ford Figo HB Energy,2017,"105,800",Monterrey,"$172,999" +Audi A7 Elite 3.0SC,2016,"32,500",Monterrey,"$694,999" +Kia Soul EX,2016,"103,400",Monterrey,"$284,999" +Nissan X Trail Advance,2018,"86,700",Monterrey,"$402,999" +Honda Hr-V Epic,2016,"108,600",Monterrey,"$304,999" +Nissan Kicks Advance,2019,"58,600",Monterrey,"$342,999" +Renault Duster Dynamique,2017,"67,200",Monterrey,"$237,999" +Nissan Versa Sense,2017,"83,000",Monterrey,"$194,999" +Ford Fiesta S,2015,"88,400",Monterrey,"$157,999" +Volkswagen Jetta A6 2.0l TM5,2017,"41,700",Monterrey,"$241,999" +Chevrolet Aveo LS,2016,"85,400",Monterrey,"$150,999" +Chevrolet Traverse LT,2015,"76,500",Monterrey,"$343,999" +Mazda Cx-3 I Grand Touring,2019,"55,000",Monterrey,"$377,999" +Toyota Yaris Premium,2016,"72,000",Monterrey,"$198,999" +Volkswagen Vento Starline,2018,"74,700",Monterrey,"$205,999" +Toyota RAV4 XLE,2013,"84,000",Monterrey,"$298,999" +Mazda 3 i Sport,2021,"26,600",Monterrey,"$423,999" +Mercedes Benz Clase Gla GLA 200,2018,"104,400",Monterrey,"$491,999" +Chevrolet Aveo LS,2019,"80,200",Monterrey,"$202,999" +Hyundai Grand i10 Hatch Back GLS,2015,"121,300",Monterrey,"$154,999" +Toyota Sienna Limited,2018,"96,800",Monterrey,"$644,999" +Toyota Yaris Core,2017,"63,700",Monterrey,"$234,999" +Volkswagen Gol HB Trendline,2020,"40,200",Monterrey,"$225,999" +Volkswagen Vento Startline,2016,"105,800",Monterrey,"$183,999" +Audi Q5 Quattro Trendy,2015,"125,600",Monterrey,"$378,999" +Volkswagen Vento Highline TD,2015,"116,800",Monterrey,"$184,999" +Seat Ibiza Style,2018,"72,300",Monterrey,"$272,999" +Chevrolet Sonic LT (Cambio de línea),2017,"52,600",Monterrey,"$204,999" +Honda Hr-V Epic,2018,"57,600",Monterrey,"$350,999" +Kia Rio LX,2018,"37,300",Monterrey,"$282,999" +Nissan Versa Advance,2018,"60,800",Monterrey,"$217,999" +Kia Rio LX,2021,"27,300",Monterrey,"$291,999" +Dodge Challenger Black Top,2017,"122,800",Monterrey,"$575,999" +Volkswagen Jetta A7 R Line,2019,"49,500",Monterrey,"$429,999" +Hyundai ix35 Limited,2015,"79,500",Monterrey,"$271,999" +Gmc Terrain Denali,2016,"97,300",Monterrey,"$375,999" +Chevrolet Trax LTZ (Línea anterior),2016,"75,000",Monterrey,"$278,999" +Volkswagen Jetta Clasico A4 CL,2013,"86,600",Monterrey,"$159,999" +Nissan Kicks Advance,2018,"56,700",Monterrey,"$325,999" +Buick Encore Encore 1.4,2016,"78,000",Monterrey,"$308,999" +Nissan Sentra Exclusive,2019,"22,800",Monterrey,"$375,999" +Volkswagen Tiguan Trendline Plus,2018,"72,000",Monterrey,"$427,999" +Mazda 3 HB I Touring 2.5l,2017,"78,500",Monterrey,"$280,999" +Chrysler 300 C Premium,2014,"87,200",Monterrey,"$291,999" +Nissan Versa V-Drive,2020,"31,600",Monterrey,"$225,999" +Nissan Sentra Advance,2018,"89,000",Monterrey,"$269,999" +Nissan Versa Advance,2017,"98,200",Monterrey,"$203,999" +Mitsubishi Outlander Limited,2017,"75,300",Monterrey,"$407,999" +Mercedes Benz Clase C C250 CGI Sport,2016,"81,500",Monterrey,"$486,999" +Jeep Patriot Base,2012,"123,300",Monterrey,"$178,999" +Mazda Cx-3 I Grand Touring,2017,"84,700",Monterrey,"$325,999" +Renault Logan Dynamique,2015,"111,500",Monterrey,"$148,999" +Mercedes Benz Clase A A200 Sport,2016,"80,300",Monterrey,"$397,999" +Toyota Corolla LE,2017,"80,500",Monterrey,"$279,999" +Volkswagen Jetta A6 Trendline,2017,"77,300",Monterrey,"$261,999" +Chevrolet Cavalier Premier,2018,"102,700",Monterrey,"$265,999" +Honda CR-V EX,2013,"95,200",Monterrey,"$257,999" +Chevrolet Sonic LT (Cambio de línea),2017,"114,200",Monterrey,"$200,999" +Kia Rio LX,2017,"91,300",Monterrey,"$213,999" +Kia Rio EX,2017,"51,700",Monterrey,"$230,999" +Ford Edge Titanium,2016,"79,700",Monterrey,"$445,999" +Jeep Renegade Sport,2019,"52,400",Monterrey,"$384,999" +Mitsubishi Outlander ES,2018,"53,700",Monterrey,"$363,999" +Mazda 3 i Touring,2018,"85,400",Monterrey,"$307,999" +Volkswagen Jetta A6 Comfortline,2016,"96,500",Monterrey,"$253,999" +Nissan Sentra Advance,2018,"93,200",Monterrey,"$269,999" +Toyota RAV4 LE,2016,"107,000",Monterrey,"$363,999" +Audi A5 S Line,2018,"67,300",Monterrey,"$634,999" +Fiat Uno Hatch Back Like,2017,"69,000",Monterrey,"$156,999" +Chevrolet Beat LTZ,2018,"35,500",Monterrey,"$193,999" +Toyota Yaris Core,2018,"62,300",Monterrey,"$233,999" +Mazda Cx-3 I Grand Touring,2017,"75,100",Monterrey,"$344,999" +Audi A3 Select,2018,"58,800",Monterrey,"$416,999" +Kia Rio L,2019,"35,600",Monterrey,"$235,999" +Renault Duster Expression,2015,"123,100",Monterrey,"$189,999" +Lincoln MKC Reserve,2015,"109,100",Monterrey,"$346,999" +Chevrolet Equinox LS (Línea anterior),2017,"86,600",Monterrey,"$303,999" +Gmc Terrain Denali,2015,"88,000",Monterrey,"$342,999" +Toyota Yaris Premium,2016,"96,800",Monterrey,"$199,999" +Volkswagen Jetta A6 GLI,2017,"78,700",Monterrey,"$406,999" +Volkswagen Polo Hatch Back 1.6,2015,"90,000",Monterrey,"$188,999" +Kia Sorento LX,2016,"75,000",Monterrey,"$341,999" +Suzuki Swift Hatch Back Sport,2014,"88,000",Monterrey,"$201,999" +Hyundai Elantra GLS,2018,"72,600",Monterrey,"$257,999" +Chevrolet Cruze LS (Línea anterior),2016,"105,000",Monterrey,"$179,999" +Toyota C-Hr Base,2018,"35,300",Monterrey,"$393,999" +Nissan Sentra Advance,2016,"91,000",Monterrey,"$195,999" +Jeep Compass Sport,2013,"107,700",Monterrey,"$213,999" +Nissan Sentra Advance,2017,"103,800",Monterrey,"$233,999" +Volkswagen Vento Comfortline,2017,"58,400",Monterrey,"$197,999" +Honda CR-V EXL,2016,"97,200",Monterrey,"$386,999" +Hyundai Elantra GLS Premium,2017,"53,400",Monterrey,"$249,999" +Dodge Grand Caravan SE,2019,"49,100",Monterrey,"$374,999" +Nissan X Trail Exclusive,2017,"91,800",Monterrey,"$366,999" +Kia Forte EX,2021,"28,300",Monterrey,"$383,999" +Chevrolet Sonic LT TA (Línea anterior),2016,"93,100",Monterrey,"$183,999" +Gmc Terrain Denali,2017,"53,400",Monterrey,"$408,999" +Ford Eco Sport Trend,2018,"56,100",Monterrey,"$290,999" +Kia Sportage EX (Línea anterior),2016,"35,700",Monterrey,"$318,999" +Kia Sportage EX (Línea nueva),2016,"86,150",Monterrey,"$322,999" +Subaru Legacy 2.5i GT,2013,"68,200",Monterrey,"$223,999" +Honda CR-V EXL,2016,"71,100",Monterrey,"$386,999" +Chevrolet Sonic HB. LT TA (Línea anterior),2016,"63,600",Monterrey,"$174,999" +Volkswagen Jetta A6 Comfortline,2018,"67,600",Monterrey,"$302,999" +Toyota Yaris HB s,2021,"19,800",Monterrey,"$339,999" +Audi A3 Select,2018,"97,000",Monterrey,"$417,999" +Chevrolet Spark Hatch Back LTZ,2017,"70,200",Monterrey,"$185,999" +Renault Duster Zen,2018,"54,400",Monterrey,"$240,999" +Nissan March Hatch Back Advance,2019,"1,300",Monterrey,"$260,999" +Gmc Acadia Denali,2018,"74,600",Monterrey,"$594,999" +Nissan X Trail Exclusive,2018,"61,400",Monterrey,"$450,999" +Kia Sorento EX,2017,"94,350",Monterrey,"$418,999" +Kia Sportage EX (Línea anterior),2016,"117,600",Monterrey,"$308,999" +Seat Ibiza Style 1.6l,2016,"65,400",Monterrey,"$234,999" +Kia Rio HB LX,2017,"97,000",Monterrey,"$223,999" +Fiat Uno HB Sporting,2020,"50,100",Monterrey,"$243,999" +Volkswagen Tiguan Comfortline,2018,"85,800",Monterrey,"$464,999" +Seat Ibiza Style Connect 1.6l,2016,"89,100",Monterrey,"$229,999" +Kia Soul EX Pack,2020,"40,100",Monterrey,"$398,999" +Kia Rio EX,2018,"37,500",Monterrey,"$286,999" +Nissan March Hatch Back Advance,2020,"8,500",Monterrey,"$241,999" +Nissan Sentra SR,2015,"99,200",Monterrey,"$214,999" +Ford Eco Sport Trend,2018,"76,000",Monterrey,"$304,999" +Renault Captur Iconic,2018,"46,100",Monterrey,"$285,999" +Volkswagen Jetta Clasico A4 CL,2015,"110,000",Monterrey,"$191,999" +Volkswagen Caddy Cargo Van Maxi,2018,"92,000",Monterrey,"$347,999" +Kia Sportage EX,2017,"70,700",Monterrey,"$383,999" +Hyundai Elantra GLS Premium,2018,"57,500",Monterrey,"$285,999" +Seat Ibiza Style,2019,"31,400",Monterrey,"$336,999" +Honda CR-V LX,2014,"79,300",Monterrey,"$279,999" +Bmw Serie 3 320i,2015,"125,600",Monterrey,"$302,999" +Chevrolet Sonic LTZ (Cambio de línea),2017,"79,300",Monterrey,"$233,999" +Chevrolet Equinox LT (Línea anterior),2017,"96,200",Monterrey,"$310,999" +Infiniti QX60 QX60 Perfection Plus,2017,"83,600",Monterrey,"$542,999" +Kia Soul EX,2016,"31,100",Monterrey,"$263,999" +Chevrolet Cavalier LS,2018,"60,600",Monterrey,"$214,999" +Ford Explorer XLT Base,2010,"139,000",Monterrey,"$168,999" +Mazda 2 Hatch Back i,2018,"52,400",Monterrey,"$253,999" +Acura MDX MDX,2016,"81,400",Monterrey,"$437,999" +Suzuki Swift Hatch Back Boosterjet,2019,"41,000",Monterrey,"$304,999" +Chevrolet Sonic LT TA (Línea anterior),2016,"113,800",Monterrey,"$181,999" +Volkswagen Polo Hatch Back GTI,2017,"57,200",Monterrey,"$316,999" +Nissan Pathfinder NP Exclusive,2014,"94,700",Monterrey,"$319,999" +Honda CR-V EXL,2014,"106,400",Monterrey,"$294,999" +Mitsubishi Outlander Limited,2016,"84,700",Monterrey,"$357,999" +Chrysler Town & Country LX,2014,"116,500",Monterrey,"$233,999" +Renault Stepway Hatch Back Stepway Intens,2018,"41,700",Monterrey,"$213,999" +Kia Rio EX,2018,"70,150",Monterrey,"$281,999" +Dodge Journey SXT Plus,2014,"100,200",Monterrey,"$244,999" +Mercedes Benz Clase A A200 Style,2017,"86,200",Monterrey,"$364,999" +Kia Rio EX,2017,"89,750",Monterrey,"$235,999" +Mazda 2 I Touring,2019,"20,800",Monterrey,"$302,999" +Honda Odyssey Touring,2011,"109,300",Monterrey,"$270,999" +Seat Ibiza Style 1.2T,2015,"110,200",Monterrey,"$199,999" +Mazda 3 i touring,2015,"102,500",Monterrey,"$235,999" +Mazda 3 i touring TA,2016,"106,300",Monterrey,"$241,999" +Nissan Sentra Advance,2017,"85,600",Monterrey,"$244,999" +Chevrolet Beat LTZ,2020,"50,100",Monterrey,"$208,999" +Honda CR-V LX,2014,"115,600",Monterrey,"$285,999" +Seat Toledo Style,2017,"55,100",Monterrey,"$231,999" +Chevrolet Beat LT,2018,"85,650",Monterrey,"$165,999" +Kia Sportage EX (Línea anterior),2016,"62,850",Monterrey,"$314,999" +Nissan X Trail Exclusive,2015,"83,000",Monterrey,"$303,999" +Mercedes Benz Clase C C250 CGI Sport,2014,"86,300",Monterrey,"$302,999" +Chevrolet Aveo LT,2016,"71,400",Monterrey,"$148,999" +Kia Rio LX,2020,"19,400",Monterrey,"$277,999" +Volkswagen Jetta A7 GLI,2019,"33,200",Monterrey,"$544,999" +Hyundai Creta GLS,2018,"102,200",Monterrey,"$321,999" +Nissan Versa Sense,2019,"73,200",Monterrey,"$230,999" +Smart Fortwo Fortwo Coupé Passion,2017,"51,000",Monterrey,"$284,999" +Mazda 2 I Touring,2019,"39,000",Monterrey,"$298,999" +Volkswagen Vento Comfortline,2019,"24,200",Monterrey,"$252,999" +Toyota Corolla C,2016,"100,500",Monterrey,"$226,999" +Nissan Kicks Advance,2017,"61,300",Monterrey,"$292,999" +Kia Rio LX,2017,"77,800",Monterrey,"$216,999" +Mini Cooper Chili,2016,"92,200",Monterrey,"$290,999" +Mini Cooper S S Hot Chili,2017,"71,800",Monterrey,"$408,999" +Nissan Sentra Sense,2017,"67,800",Monterrey,"$224,999" +Kia Forte EX,2018,"72,400",Monterrey,"$300,999" +Hyundai Creta Limited,2018,"55,100",Monterrey,"$348,999" +Dodge Attitude SE,2017,"85,800",Monterrey,"$172,999" +Nissan Altima Advance,2013,"92,700",Monterrey,"$186,999" +Honda CR-V I Style,2015,"41,000",Monterrey,"$329,999" +Mazda Cx-3 I Grand Touring,2018,"85,850",Monterrey,"$362,999" +Honda Odyssey EXL,2015,"128,400",Monterrey,"$389,999" +Nissan Sentra Sense,2017,"63,800",Monterrey,"$224,999" +Nissan NP300 Frontier LE,2018,"56,800",Monterrey,"$414,999" +Mazda 2 Hatch Back i Touring,2016,"98,700",Monterrey,"$229,999" +Mazda 3 S,2015,"83,400",Monterrey,"$245,999" +Mitsubishi Outlander ES,2014,"79,100",Monterrey,"$238,999" +Bmw X1 18i,2018,"69,600",Monterrey,"$475,999" +Jeep Grand Cherokee Laredo,2018,"72,000",Monterrey,"$580,999" +Honda BR-V Prime,2018,"42,800",Monterrey,"$349,999" +Renault Koleos Iconic,2019,"66,100",Monterrey,"$468,999" +Nissan Sentra Sense,2017,"94,800",Monterrey,"$226,999" +Kia Rio HB EX Pack,2020,"25,200",Monterrey,"$344,999" +Honda Odyssey EXL,2016,"121,300",Monterrey,"$431,999" +Honda Hr-V Uniq CVT,2019,"67,700",Monterrey,"$366,999" +Chevrolet Cavalier LT,2018,"64,000",Monterrey,"$247,999" +Volkswagen Beetle Hatch Back Sportline Tiptronic,2017,"58,000",Monterrey,"$297,999" +Honda Odyssey EXL,2014,"120,400",Monterrey,"$361,999" +Seat Ibiza Blitz,2017,"72,000",Monterrey,"$222,999" +Nissan NP300 Frontier LE,2020,"52,000",Monterrey,"$542,999" +Dodge Attitude SE,2019,"58,800",Monterrey,"$203,999" +Seat Ibiza Xcellence,2019,"76,700",Monterrey,"$317,999" +Nissan Sentra Advance,2018,"44,400",Monterrey,"$268,999" +Kia Sorento EX,2016,"105,800",Monterrey,"$390,999" +Seat Ibiza Style,2018,"45,600",Monterrey,"$274,999" +Honda Hr-V Uniq,2016,"63,300",Monterrey,"$285,999" +Toyota Sienna XLE,2020,"37,500",Monterrey,"$697,999" +Chevrolet Malibu Premier,2018,"74,200",Monterrey,"$412,999" +Nissan X Trail Sense,2016,"111,300",Monterrey,"$297,999" +Honda Accord EXL,2016,"98,800",Monterrey,"$345,999" +Mazda CX-9 i Sport,2017,"97,400",Monterrey,"$469,999" +Kia Sorento LX,2016,"126,450",Monterrey,"$341,999" +Seat Arona Xcellence,2019,"72,000",Monterrey,"$372,999" +Nissan Versa Advance,2019,"62,600",Monterrey,"$249,999" +Volkswagen Vento Starline,2018,"101,000",Monterrey,"$198,999" +Honda Civic Coupé Turbo,2017,"42,000",Monterrey,"$361,999" +Nissan X Trail Exclusive,2017,"91,000",Monterrey,"$376,999" +Seat Ibiza Reference,2017,"71,700",Monterrey,"$203,999" +Chevrolet Equinox LTZ,2016,"70,800",Monterrey,"$318,999" +Chevrolet Spark Hatch Back LTZ,2017,"98,600",Monterrey,"$177,999" +Nissan Pathfinder Advance,2017,"78,600",Monterrey,"$480,999" +Nissan Sentra Advance,2017,"56,500",Monterrey,"$249,999" +Chevrolet Beat LTZ,2018,"98,600",Monterrey,"$187,999" +Honda Pilot Touring,2018,"74,000",Monterrey,"$645,999" +Mazda CX-5 i Sport,2019,"40,000",Monterrey,"$466,999" +Nissan Sentra Sense,2017,"69,000",Monterrey,"$224,999" +Toyota Corolla S,2016,"73,000",Monterrey,"$273,999" +Seat Ibiza Style,2020,"27,200",Monterrey,"$352,999" +Seat Arona Style,2019,"29,200",Monterrey,"$344,999" +Chevrolet Aveo LTZ,2020,"29,700",Monterrey,"$274,999" +Volkswagen Jetta A6 Jetta A6 2.0l,2015,"102,503",Monterrey,"$194,999" +Audi Q3 S Line,2017,"93,000",Monterrey,"$455,999" +Renault Koleos Dynamique,2013,"121,200",Monterrey,"$189,999" +Kia Rio HB EX,2017,"106,200",Monterrey,"$249,999" +Volkswagen Crossfox Hatch Back,2014,"59,500",Monterrey,"$187,999" +Nissan Versa Exclusive,2018,"49,000",Monterrey,"$255,999" +Honda City EX,2019,"52,000",Monterrey,"$308,999" +Kia Rio LX,2017,"92,300",Monterrey,"$222,999" +Honda Odyssey EX,2016,"75,000",Monterrey,"$399,999" +Kia Forte EX,2017,"96,400",Monterrey,"$246,999" +Mazda 3 i touring,2015,"115,400",Monterrey,"$243,999" +Nissan X Trail Exclusive,2017,"94,100",Monterrey,"$376,999" +Toyota Tacoma Sport,2018,"74,320",Monterrey,"$695,999" +Chevrolet Equinox LTZ,2016,"78,100",Monterrey,"$307,999" +Kia Rio LX,2018,"67,200",Monterrey,"$257,999" +Honda City EX,2014,"84,300",Monterrey,"$208,999" +Ford Escape S Plus,2018,"53,600",Monterrey,"$373,999" +Mercedes Benz Clase C C200 CGI Sport,2017,"57,300",Monterrey,"$484,999" +Dodge Journey SXT Base,2012,"136,400",Monterrey,"$195,999" +Chevrolet Sonic LT (Cambio de línea),2017,"69,000",Monterrey,"$207,999" +Audi A1 Sportback Hatch Back Cool,2017,"60,500",Monterrey,"$319,999" +Volkswagen Vento Active,2015,"106,600",Monterrey,"$175,999" +Hyundai Creta GLS,2017,"53,300",Monterrey,"$309,999" +Ford Fusion Titanium Plus,2015,"99,000",Monterrey,"$282,999" +Toyota Sienna XLE,2012,"110,300",Monterrey,"$285,999" +Volkswagen Gol Hatch Back Trendline,2018,"102,500",Monterrey,"$198,999" +Hyundai Grand i10 Hatch Back GL MID,2017,"104,500",Monterrey,"$190,999" +Nissan Sentra Advance,2017,"99,100",Monterrey,"$239,999" +Chevrolet Sonic LT TA (Línea anterior),2016,"68,700",Monterrey,"$179,999" +Chevrolet Trax LS (Línea anterior),2016,"98,500",Monterrey,"$239,999" +Nissan March Hatch Back Sense,2019,"69,400",Monterrey,"$197,999" +Jeep Renegade Latitude,2018,"57,000",Monterrey,"$381,999" +Buick Enclave Premium,2017,"59,100",Monterrey,"$487,999" +Chevrolet Beat LT,2019,"102,600",Monterrey,"$196,999" +Honda Fit HB LX,2014,"77,200",Monterrey,"$183,999" +Kia Sorento EX Pack,2018,"40,500",Monterrey,"$515,999" +Nissan NP300 Frontier Doble Cabina,2018,"100,000",Monterrey,"$534,999" +Mazda Cx-3 I Grand Touring,2017,"35,200",Monterrey,"$341,999" +Chevrolet Equinox Premier Plus (Línea nueva),2018,"74,000",Monterrey,"$467,999" +Nissan Altima Advance Navi,2017,"62,500",Monterrey,"$303,999" +Hyundai Creta Limited,2019,"109,700",Monterrey,"$388,999" +Chevrolet Sonic LS (Línea anterior),2016,"95,100",Monterrey,"$174,999" +Dodge Journey SE,2015,"116,500",Monterrey,"$254,999" +Volkswagen Passat CC 2.0T,2016,"99,500",Monterrey,"$312,999" diff --git a/data/sneakers.csv b/data/sneakers.csv new file mode 100644 index 0000000..0c067e6 --- /dev/null +++ b/data/sneakers.csv @@ -0,0 +1,1001 @@ +id,sku,brand,name,colorway,gender,silhouette,releaseYear,releaseDate,retailPrice,estimatedMarketValue,story,image,links +b274a3f7-7211-42de-81ec-01802a0b0853,DO6492-141,Nike,Air Max 90 Golf 'Washed Teal',Sail/Pearl White/Light Orewood Brown/Washed Teal,men,Air Max 90,2022,2022-04-05,150,200,"The Nike Air Max 90 Golf ‘Washed Teal’ takes the retro runner from the street to the green. The upper maintains the clean lines of the original, featuring an off-white textile base, TPU eyelets, a tonal suede mudguard, and an aqua-colored leather Swoosh. The latter hue is repeated on the foam midsole, enhanced with a crimson-tinged Max Air unit in the heel. A gum rubber outsole is updated with an integrated traction pattern inspired by Nike’s iconic waffle tread.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/832/original/DO6492_141.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/832/original/DO6492_141.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/832/original/DO6492_141.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-90-golf-washed-teal-do6492-141', 'flightClub': 'https://flightclub.com/air-max-90-golf-washed-teal-do6492-141', 'stadiumGoods': ''}" +bf17d1b0-82e7-46de-b78a-6ec0fe748f17,DO0750-002,Jordan,Jordan 1 Low SE Sherpa Fleece (W),College Grey/Particle Grey/Neutral Grey/White,women,Air Jordan 1,2022,2022-04-05,120,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/066/248/261/original/850026_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/066/248/261/original/850026_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/066/248/261/original/850026_00.png.png'}","{'stockX': 'https://stockx.com/air-jordan-1-low-se-sherpa-fleece-w', 'goat': 'https://goat.com/sneakers/wmns-air-jordan-1-low-se-sherpa-fleece-do0750-002', 'flightClub': 'https://flightclub.com/wmns-air-jordan-1-low-se-sherpa-fleece-do0750-002', 'stadiumGoods': ''}" +cbcf2b91-c213-4b84-b6fa-12e69651c4bf,DC0774-114,Jordan,Wmns Air Jordan 1 Low 'Marina Blue',White/Dark Marina Blue,women,Air Jordan 1,2022,2022-04-05,100,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/693/145/original/913992_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/693/145/original/913992_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/693/145/original/913992_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-air-jordan-1-low-marina-blue-dc0774-114', 'flightClub': 'https://flightclub.com/wmns-air-jordan-1-low-marina-blue-dc0774-114', 'stadiumGoods': ''}" +01903417-7f84-46f3-b946-44dca028cc7d,GZ1554,adidas,Swift Run 22 J 'White Black',Cloud White/Core Black/Cloud White,youth,Swift Run,2022,2022-04-04,70,70,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/swift-run-22-j-white-black-gz1554', 'flightClub': 'https://flightclub.com/swift-run-22-j-white-black-gz1554', 'stadiumGoods': ''}" +11492de7-ed5b-4e06-82bf-12eb96ed08c0,GY1972,Reebok,Wmns Nano X1 'Pure Grey Hint Mint',Pure Grey 1/Hint Mint/Pure Grey 3,women,Nano X1,2022,2022-04-04,135,135,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nano-x1-pure-grey-hint-mint-gy1972', 'flightClub': 'https://flightclub.com/wmns-nano-x1-pure-grey-hint-mint-gy1972', 'stadiumGoods': ''}" +1d0d617c-fbf5-4a81-b451-38bb5f87535a,A01209F,Converse,Chuck Taylor All Star Low Easy-On TD 'Ice Pop',White/Baltic Blue/Lime Rave,infant,Chuck Taylor All Star,2022,2022-04-04,35,35,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/chuck-taylor-all-star-low-easy-on-td-ice-pop-a01209f', 'flightClub': 'https://flightclub.com/chuck-taylor-all-star-low-easy-on-td-ice-pop-a01209f', 'stadiumGoods': ''}" +2827e2d4-f798-412b-8d6e-5896282365f5,194682-09,Puma,Wmns Eternity Nitro 'Grape Wine',Grape Wine/Lavender Fog/White,women,Eternity Nitro,2022,2022-04-04,120,120,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-eternity-nitro-grape-wine-194682-09', 'flightClub': 'https://flightclub.com/wmns-eternity-nitro-grape-wine-194682-09', 'stadiumGoods': ''}" +30594b59-b829-4e57-a665-735fb3265969,171331C,Converse,Louie Lopez Pro Mid 'Black White',Black/Black/White,men,Louie Lopez Pro,2022,2022-04-04,75,75,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/louie-lopez-pro-mid-black-white-171331c', 'flightClub': 'https://flightclub.com/louie-lopez-pro-mid-black-white-171331c', 'stadiumGoods': ''}" +36cec28f-675f-471c-b14e-90311ae7b8a6,GZ3332,adidas,Vulc Raid3r J 'White Black',Cloud White/Cloud White/Core Black,youth,Vulc Raid3r,2022,2022-04-04,45,45,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/vulc-raid3r-j-white-black-gz3332', 'flightClub': 'https://flightclub.com/vulc-raid3r-j-white-black-gz3332', 'stadiumGoods': ''}" +39ce73cf-32a8-421a-b3ac-5f95a0f3b9e9,GV7846,adidas,FortaRun EL J 'Black Floral',Core Black/Cloud White/Bold Gold,youth,FortaRun,2022,2022-04-04,50,50,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fortarun-el-j-black-floral-gv7846', 'flightClub': 'https://flightclub.com/fortarun-el-j-black-floral-gv7846', 'stadiumGoods': ''}" +48535ce3-3778-4f60-809c-5ae3014d1e04,GX5512,adidas,Wmns SolarGlide 5 'Black Floral',Core Black/Core Black/Solar Red,women,SolarGlide,2022,2022-04-04,130,130,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-solarglide-5-black-floral-gx5512', 'flightClub': 'https://flightclub.com/wmns-solarglide-5-black-floral-gx5512', 'stadiumGoods': ''}" +490287c7-9691-4819-8ccd-a68c66a58a90,GZ0946,adidas,Forum Exhibit Mid 'White Vivid Red',Cloud White/Core Black/Vivid Red,men,Forum,2022,2022-04-04,100,100,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/forum-exhibit-mid-white-vivid-red-gz0946', 'flightClub': 'https://flightclub.com/forum-exhibit-mid-white-vivid-red-gz0946', 'stadiumGoods': ''}" +4cf060a4-6858-4af8-a4da-012adfd7a5af,194682-02,Puma,Wmns Eternity Nitro 'Quarry Elektro Peach',Quarry/Elektro Blue/Elektro Peach,women,Eternity Nitro,2022,2022-04-04,120,120,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-eternity-nitro-quarry-elektro-peach-194682-02', 'flightClub': 'https://flightclub.com/wmns-eternity-nitro-quarry-elektro-peach-194682-02', 'stadiumGoods': ''}" +656297e5-047b-461d-85d1-630386773d16,GX3913,adidas,Swarovski x Predator Edge+ FG 'Focus Olive Crystal',Focus Olive/Silver Metallic/Magic Lime,men,Predator Edge+,2022,2022-04-04,350,350,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/swarovski-x-predator-edge-fg-focus-olive-crystal-gx3913', 'flightClub': 'https://flightclub.com/swarovski-x-predator-edge-fg-focus-olive-crystal-gx3913', 'stadiumGoods': ''}" +7513971e-7278-4f60-8bdc-c75b6d39bb6e,GX2960,adidas,Supernova+ CC 'Black Mint Rush',Core Black/Mint Rush/Solar Yellow,men,Supernova,2022,2022-04-04,120,120,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/supernova-cc-black-mint-rush-gx2960', 'flightClub': 'https://flightclub.com/supernova-cc-black-mint-rush-gx2960', 'stadiumGoods': ''}" +81109269-90bf-4adf-b546-03d94b07dca3,GX2662,Reebok,InstaPump Fury 95 'Aubergine',Aubergine/Core Black/Footwear White,men,InstaPump Fury,2022,2022-04-04,180,187,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/877/original/GX2662.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/877/original/GX2662.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/877/original/GX2662.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/instapump-fury-95-aubergine-gx2662', 'flightClub': 'https://flightclub.com/instapump-fury-95-aubergine-gx2662', 'stadiumGoods': ''}" +822c4912-294e-4275-ae76-132d7e458136,GY1973,Reebok,Wmns Nano X1 'Quartz Glow Pure Grey',Quartz Glow/Pure Grey 5/Footwear White,women,Nano X1,2022,2022-04-04,135,135,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nano-x1-quartz-glow-pure-grey-gy1973', 'flightClub': 'https://flightclub.com/wmns-nano-x1-quartz-glow-pure-grey-gy1973', 'stadiumGoods': ''}" +a4a69670-d779-4d32-9d92-54f3fe64bf0c,GZ6177,Nike,Kevin Lyons x Originals Flex I 'Monster',Cloud White/True Pink/Shadow Navy,infant,Flex,2022,2022-04-04,50,50,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/kevin-lyons-x-originals-flex-i-monster-gz6177', 'flightClub': 'https://flightclub.com/kevin-lyons-x-originals-flex-i-monster-gz6177', 'stadiumGoods': ''}" +bd66aff4-47d9-4f67-84d2-f385e41266ac,306923-05,Puma,Scuderia Ferrari x IONSpeed Motorsport 'Asphalt Rosso Corsa',Asphalt/Black/Rosso Corsa,men,IONSpeed Motorsport,2022,2022-04-04,110,110,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/scuderia-ferrari-x-ionspeed-motorsport-asphalt-rosso-corsa-306923-05', 'flightClub': 'https://flightclub.com/scuderia-ferrari-x-ionspeed-motorsport-asphalt-rosso-corsa-306923-05', 'stadiumGoods': ''}" +d707f541-d61e-4eb4-b5f2-598cd1343586,GX3910,adidas,Swarovski x Predator Edge.1 FG 'Focus Olive Crystal',Focus Olive/Silver Metallic/Magic Lime,men,Predator Edge.1,2022,2022-04-04,330,330,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/swarovski-x-predator-edge-1-fg-focus-olive-crystal-gx3910', 'flightClub': 'https://flightclub.com/swarovski-x-predator-edge-1-fg-focus-olive-crystal-gx3910', 'stadiumGoods': ''}" +e8939873-c404-4e9d-9935-1c16700b9010,GY3735,adidas,Adilette Slide 'Hi-Res Green Turbo',Hi-Res Green/Semi Turbo/Hi-Res Green,men,Adilette,2022,2022-04-04,45,45,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/adilette-slide-hi-res-green-turbo-gy3735', 'flightClub': 'https://flightclub.com/adilette-slide-hi-res-green-turbo-gy3735', 'stadiumGoods': ''}" +07689aab-4498-407a-bc40-6b801778bfec,CZ5361-010,Nike,Air Max SC TD 'Phantom Rattan',Phantom/Rattan/Summit White/Black,infant,Air Max SC,2022,2022-04-03,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/917/original/CZ5361_010.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/917/original/CZ5361_010.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/917/original/CZ5361_010.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-sc-td-phantom-rattan-cz5361-010', 'flightClub': 'https://flightclub.com/air-max-sc-td-phantom-rattan-cz5361-010', 'stadiumGoods': ''}" +0d2615b7-1b28-4888-aaae-18ed9794b7ef,DD9311-004,Nike,Fly.By Mid 3 'Light Iron Ore',Light Iron Ore/Atomic Green/Black/Phantom,men,Fly.By,2022,2022-04-03,65,65,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/938/original/DD9311_004.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/938/original/DD9311_004.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/938/original/DD9311_004.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fly-by-mid-3-light-iron-ore-dd9311-004', 'flightClub': 'https://flightclub.com/fly-by-mid-3-light-iron-ore-dd9311-004', 'stadiumGoods': ''}" +0dd8d37d-ea30-4fe1-85be-02797c570a95,GW3308,adidas,Kevin Lyons x Superstar 360 I 'Monster Face',Clear Pink/Shadow Navy/Cloud White,infant,Superstar,2022,2022-04-03,45,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/013/original/GW3308.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/013/original/GW3308.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/013/original/GW3308.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/kevin-lyons-x-superstar-360-i-monster-face-gw3308', 'flightClub': 'https://flightclub.com/kevin-lyons-x-superstar-360-i-monster-face-gw3308', 'stadiumGoods': ''}" +15059e6b-c48f-43b6-b779-cf656681bc9c,GY6811,Reebok,Wmns Classic Leather 'Canyon Coral Melon',Canyon Coral Melon/Canyon Coral Melon/Footwear White,women,Reebok Classic,2022,2022-04-03,85,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/429/original/GY6811.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/429/original/GY6811.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/429/original/GY6811.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-classic-leather-canyon-coral-melon-gy6811', 'flightClub': 'https://flightclub.com/wmns-classic-leather-canyon-coral-melon-gy6811', 'stadiumGoods': ''}" +1a961a0b-a79e-4a9d-a59b-74e20f7b4bd0,GW0923,adidas,LEGO x Racer TR I 'Grey Black',Grey Three/Core Black/Red,infant,Racer TR,2022,2022-04-03,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/408/original/GW0923.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/408/original/GW0923.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/408/original/GW0923.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lego-x-racer-tr-i-grey-black-gw0923', 'flightClub': 'https://flightclub.com/lego-x-racer-tr-i-grey-black-gw0923', 'stadiumGoods': ''}" +271991eb-2d05-44e7-828b-6ad1a676b226,GV7949,adidas,Superstar J 'Altered Blue White',Altered Blue/Ambient Sky/Cloud White,youth,Superstar,2022,2022-04-03,85,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/405/original/GV7949.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/405/original/GV7949.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/405/original/GV7949.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/superstar-j-altered-blue-white-gv7949', 'flightClub': 'https://flightclub.com/superstar-j-altered-blue-white-gv7949', 'stadiumGoods': ''}" +4bdfa415-a381-4b4c-96b6-338aaa6c70c7,DB3551-003,Nike,Crater Impact GS 'Football Grey Game Royal',Football Grey/Wolf Grey/Rush Orange/Game Royal,youth,Crater Impact,2022,2022-04-03,80,238,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/921/original/DB3551_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/921/original/DB3551_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/921/original/DB3551_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/crater-impact-gs-football-grey-game-royal-db3551-003', 'flightClub': 'https://flightclub.com/crater-impact-gs-football-grey-game-royal-db3551-003', 'stadiumGoods': ''}" +62a16976-3a04-4240-ab72-dfe8a37bc460,H01162,adidas,adidas Solarglide 5 Carbon Silver Turbo,Carbon/Silver Metallic/Turbo,men,adidas Solarglide 5,2022,2022-04-03,130,122,,"{'360': [], 'original': 'https://images.stockx.com/images/adidas-Solarglide-5-Carbon-Silver-Turbo.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648663792', 'small': 'https://images.stockx.com/images/adidas-Solarglide-5-Carbon-Silver-Turbo.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648663792', 'thumbnail': 'https://images.stockx.com/images/adidas-Solarglide-5-Carbon-Silver-Turbo.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648663792'}","{'stockX': 'https://stockx.com/adidas-solarglide-5-carbon-silver-turbo', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +713005a6-8b17-4952-8758-9dee650e4e5e,359841-15,Puma,Roma Basic Summer Big Kid 'Pearl Gum',Pearl/White,youth,Roma,2022,2022-04-03,55,55,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/roma-basic-summer-big-kid-pearl-gum-359841-15', 'flightClub': 'https://flightclub.com/roma-basic-summer-big-kid-pearl-gum-359841-15', 'stadiumGoods': ''}" +8f95393d-14d2-4fbf-9739-9d27b6e95a40,GX0616,adidas,Wmns Puremotion Super 'White Blue Tint',Cloud White/Cloud White/Blue Tint,women,Puremotion,2022,2022-04-03,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/026/original/GX0616.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/026/original/GX0616.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/026/original/GX0616.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-puremotion-super-white-blue-tint-gx0616', 'flightClub': 'https://flightclub.com/wmns-puremotion-super-white-blue-tint-gx0616', 'stadiumGoods': ''}" +9d348900-85b0-49dd-9b7f-963208e9a8d3,GW0851,Reebok,Wmns DayStart OnLux 'Canyon Coral',Canyon Coral/Canyon Coral/Footwear White,women,DayStart,2022,2022-04-03,65,65,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-daystart-onlux-canyon-coral-gw0851', 'flightClub': 'https://flightclub.com/wmns-daystart-onlux-canyon-coral-gw0851', 'stadiumGoods': ''}" +aa46e967-6e11-417f-806d-0fa1db5fd60e,DH9465-401,Nike,Sunray Protect 3 TD 'Aura Worn Blue',Aura/Worn Blue/White,infant,Sunray Protect 3,2022,2022-04-03,38,38,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/947/original/DH9465_401.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/947/original/DH9465_401.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/947/original/DH9465_401.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/sunray-protect-3-td-aura-worn-blue-dh9465-401', 'flightClub': 'https://flightclub.com/sunray-protect-3-td-aura-worn-blue-dh9465-401', 'stadiumGoods': ''}" +bf3ceef4-9a33-42a6-8158-c59ca2be665c,GV7831,adidas,Racer TR21 Big Kid 'Black Solar Yellow',Core Black/Halo Silver/Solar Yellow,youth,Racer TR21,2022,2022-04-03,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/398/original/GV7831.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/398/original/GV7831.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/398/original/GV7831.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/racer-tr21-big-kid-black-solar-yellow-gv7831', 'flightClub': 'https://flightclub.com/racer-tr21-big-kid-black-solar-yellow-gv7831', 'stadiumGoods': ''}" +d5e571c6-b4cb-4d50-a7c1-1d63d0d312ed,GW8079,adidas,Racer TR21 Little Kid 'Black Solar Yellow',Core Black/Halo Silver/Solar Yellow,youth,Racer TR21,2022,2022-04-03,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/019/original/GW8079.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/019/original/GW8079.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/019/original/GW8079.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/racer-tr21-little-kid-black-solar-yellow-gw8079', 'flightClub': 'https://flightclub.com/racer-tr21-little-kid-black-solar-yellow-gw8079', 'stadiumGoods': ''}" +d68efd3b-0514-41b2-967d-344b4fdf4eff,DN3596-060,Nike,Jordan Play Slide GS 'Black University Red',Black/Photon Dust/Off Noir/University Red,youth,Jordan Play Slide,2022,2022-04-03,40,40,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jordan-play-slide-gs-black-university-red-dn3596-060', 'flightClub': 'https://flightclub.com/jordan-play-slide-gs-black-university-red-dn3596-060', 'stadiumGoods': ''}" +e8f63f26-2cad-452b-9b49-f586d41623d2,DJ6606-002,Nike,Vista Sandal 'Black University Red',Black/White/Wolf Grey/University Red,men,Vista Sandal,2022,2022-04-03,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/955/original/DJ6606_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/955/original/DJ6606_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/955/original/DJ6606_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/vista-sandal-black-university-red-dj6606-002', 'flightClub': 'https://flightclub.com/vista-sandal-black-university-red-dj6606-002', 'stadiumGoods': ''}" +eb2ecd0b-9e20-4973-8b14-6a93fdbe81f0,GW8146,adidas,Lite Racer Adapt 4.0 'Grey Vivid Red',Grey Four/Carbon/Vivid Red,men,Lite Racer Adapt,2022,2022-04-03,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/023/original/GW8146.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/023/original/GW8146.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/023/original/GW8146.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lite-racer-adapt-4-0-grey-vivid-red-gw8146', 'flightClub': 'https://flightclub.com/lite-racer-adapt-4-0-grey-vivid-red-gw8146', 'stadiumGoods': ''}" +09aa08c9-46ba-4365-8d1c-12c7ce89f11c,DJ5415-400,Nike,Wmns Air Max 90 'Camo Swoosh',Aura/Ocean Cube/Summit White/Aura,women,Air Max 90,2022,2022-04-02,130,180,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/953/original/DJ5415_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/953/original/DJ5415_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/953/original/DJ5415_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-air-max-90-camo-swoosh-dj5415-400', 'flightClub': 'https://flightclub.com/wmns-air-max-90-camo-swoosh-dj5415-400', 'stadiumGoods': ''}" +0a0a7512-0ba9-4e7e-8f8d-b9b87ebbbbff,CW3406-005,Nike,Renew Elevate 2 'Cool Grey Metallic Silver',Cool Grey/Metallic Silver/Wolf Grey/Black,men,Renew Elevate,2022,2022-04-02,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/912/original/CW3406_005.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/912/original/CW3406_005.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/912/original/CW3406_005.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/renew-elevate-2-cool-grey-metallic-silver-cw3406-005', 'flightClub': 'https://flightclub.com/renew-elevate-2-cool-grey-metallic-silver-cw3406-005', 'stadiumGoods': ''}" +10af79a8-8aa6-47fb-8f93-78a5d0e220af,GY6737,adidas,Racer TR2 J 'White Blue Tint',Cloud White/Blue Tint/Almost Pink,youth,Racer TR21,2022,2022-04-02,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/069/original/GY6737.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/069/original/GY6737.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/069/original/GY6737.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/racer-tr2-j-white-blue-tint-gy6737', 'flightClub': 'https://flightclub.com/racer-tr2-j-white-blue-tint-gy6737', 'stadiumGoods': ''}" +15f9fc6e-2caf-402c-a8ec-0293fc7d0d13,GX2150,adidas,Wmns NMD_R1 'Black Solar Pink',Core Black/Core Black/Solar Pink,women,NMD Runner,2022,2022-04-02,150,220,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/037/original/GX2150.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/037/original/GX2150.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/037/original/GX2150.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nmd_r1-black-solar-pink-gx2150', 'flightClub': 'https://flightclub.com/wmns-nmd_r1-black-solar-pink-gx2150', 'stadiumGoods': ''}" +18205f4e-abe0-4236-8660-78800618549f,GV6986,adidas,Wmns Adilette Slide 'Acid Wash',Purple Tint/Cloud White/Clear Pink,women,Adilette,2022,2022-04-02,45,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/395/original/GV6986.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/395/original/GV6986.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/395/original/GV6986.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-adilette-slide-acid-wash-gv6986', 'flightClub': 'https://flightclub.com/wmns-adilette-slide-acid-wash-gv6986', 'stadiumGoods': ''}" +1aa0931b-264b-4709-9594-c76511d9f8d3,GY0985,adidas,Superstar 'Ambient Sky Altered Blue',Ambient Sky/Altered Blue/Cloud White,men,Superstar,2022,2022-04-02,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/058/original/GY0985.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/058/original/GY0985.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/058/original/GY0985.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/superstar-ambient-sky-altered-blue-gy0985', 'flightClub': 'https://flightclub.com/superstar-ambient-sky-altered-blue-gy0985', 'stadiumGoods': ''}" +1c3bb238-8c70-4fa1-bd84-04915023f09c,GX6364,adidas,Ultra 4D 'White Solar Red',Cloud White/Core Black/Solar Red,men,Ultra 4D,2022,2022-04-02,220,199,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/050/original/GX6364.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/050/original/GX6364.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/050/original/GX6364.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultra-4d-white-solar-red-gx6364', 'flightClub': 'https://flightclub.com/ultra-4d-white-solar-red-gx6364', 'stadiumGoods': ''}" +214f363f-7695-4502-bbed-7587d7c35806,GY3255,Reebok,Weebok Clasp Low Toddler 'Pure Grey White',Pure Grey 4/Pure Grey 2/Footwear White,infant,Weebok Clasp,2022,2022-04-02,40,40,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/weebok-clasp-low-toddler-pure-grey-white-gy3255', 'flightClub': 'https://flightclub.com/weebok-clasp-low-toddler-pure-grey-white-gy3255', 'stadiumGoods': ''}" +22df431e-61ae-452a-9c5d-ce9247c981c7,GY7797,Reebok,Lite Plus 3 'Black Blue Acid Yellow',Core Black/Court Blue/Acid Yellow,men,Lite Plus 3,2022,2022-04-02,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/430/original/GY7797.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/430/original/GY7797.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/430/original/GY7797.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lite-plus-3-black-blue-acid-yellow-gy7797', 'flightClub': 'https://flightclub.com/lite-plus-3-black-blue-acid-yellow-gy7797', 'stadiumGoods': ''}" +277e6796-0ad6-40ec-9d81-dd583a3a23ba,VN0A4BWXA8R,Vans,Vans Old Skool GORE-TEX DEFCON Woodland Camo,Woodland Camo/Black,men,Old Skool,2022,2022-04-02,148,499,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/445/original/VN0A4BWXA8R.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/445/original/VN0A4BWXA8R.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/445/original/VN0A4BWXA8R.png.png'}","{'stockX': 'https://stockx.com/vans-old-skool-gore-tex-defcon-woodland-camo', 'goat': 'https://goat.com/sneakers/defcon-x-old-skool-gtx-black-woodland-camo-vn0a4bwxa8r', 'flightClub': 'https://flightclub.com/defcon-x-old-skool-gtx-black-woodland-camo-vn0a4bwxa8r', 'stadiumGoods': ''}" +28be6032-8411-4f4b-8039-9698de859c8b,GX4207,adidas,Wmns Racer TR21 'White Gum',Cloud White/Cloud White/Grey Two,women,Racer TR21,2022,2022-04-02,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/046/original/GX4207.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/046/original/GX4207.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/046/original/GX4207.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-racer-tr21-white-gum-gx4207', 'flightClub': 'https://flightclub.com/wmns-racer-tr21-white-gum-gx4207', 'stadiumGoods': ''}" +29442edd-6525-4955-bcca-ace5f87230d0,GW3010,adidas,LEGO x Sport Pro J 'Red',Red/Red/Cloud White,youth,Adidas Sport,2022,2022-04-02,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/007/original/GW3010.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/007/original/GW3010.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/007/original/GW3010.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lego-x-sport-pro-j-red-gw3010', 'flightClub': 'https://flightclub.com/lego-x-sport-pro-j-red-gw3010', 'stadiumGoods': ''}" +2f39c0f2-3be0-4baf-bed2-68997daee2e0,GW0593,adidas,Wmns Ozelia 'Black White',Core Black/Cloud White/Acid Red,women,Ozelia,2022,2022-04-02,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/005/original/GW0593.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/005/original/GW0593.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/005/original/GW0593.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ozelia-black-white-gw0593', 'flightClub': 'https://flightclub.com/wmns-ozelia-black-white-gw0593', 'stadiumGoods': ''}" +4794130c-9156-4c8d-8efb-a706011f91bb,DM8615-400,Nike,Asuna 2 Next Nature Slide 'Midnight Navy',Midnight Navy/Grey Fog/Dark Grey/Mystic Navy,men,Asuna Slide,2022,2022-04-02,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/968/original/DM8615_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/968/original/DM8615_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/968/original/DM8615_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/asuna-2-next-nature-slide-midnight-navy-dm8615-400', 'flightClub': 'https://flightclub.com/asuna-2-next-nature-slide-midnight-navy-dm8615-400', 'stadiumGoods': ''}" +5227736c-d661-49ff-964a-e5d72722f7e2,A00459C,Converse,Chuck 70 High 'Seasonal Color - Light Armory Blue',Light Armory Blue/Egret/Black,men,Chuck 70,2022,2022-04-02,85,155,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/chuck-70-high-seasonal-color-light-armory-blue-a00459c', 'flightClub': 'https://flightclub.com/chuck-70-high-seasonal-color-light-armory-blue-a00459c', 'stadiumGoods': ''}" +53985d53-8205-4426-a9f3-961234c81336,GZ3247,adidas,Wmns X9000L4 Heat.RDY 'Black Almost Pink',Core Black/Core Black/Almost Pink,women,X9000L4,2022,2022-04-02,140,210,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/086/original/GZ3247.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/086/original/GZ3247.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/086/original/GZ3247.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-x9000l4-heat-rdy-black-almost-pink-gz3247', 'flightClub': 'https://flightclub.com/wmns-x9000l4-heat-rdy-black-almost-pink-gz3247', 'stadiumGoods': ''}" +54501e49-319d-4d46-a1fd-a80677dbe9f9,GX0618,adidas,Wmns Puremotion Super 'Core Black',Core Black/Core Black/Carbon,women,Puremotion,2022,2022-04-02,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/028/original/GX0618.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/028/original/GX0618.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/028/original/GX0618.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-puremotion-super-core-black-gx0618', 'flightClub': 'https://flightclub.com/wmns-puremotion-super-core-black-gx0618', 'stadiumGoods': ''}" +594445f0-ea5c-493c-ae00-126a352ca5a4,DC5221-105,Nike,Air Zoom Infinity Tour NEXT% 'White Grey Fog',White/Grey Fog/Dynamic Turquoise/Black,men,Air Zoom Infinity Tour,2022,2022-04-02,160,240,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/926/original/DC5221_105.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/926/original/DC5221_105.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/926/original/DC5221_105.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-zoom-infinity-tour-next-white-grey-fog-dc5221-105', 'flightClub': 'https://flightclub.com/air-zoom-infinity-tour-next-white-grey-fog-dc5221-105', 'stadiumGoods': ''}" +5dac643d-4910-475e-b646-295d6c598ffb,GX2119,adidas,NMD Runner I 'Mosaic - Black',Core Black/Core Black/Cloud White,infant,NMD Runner,2022,2022-04-02,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/034/original/GX2119.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/034/original/GX2119.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/034/original/GX2119.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/nmd-runner-i-mosaic-black-gx2119', 'flightClub': 'https://flightclub.com/nmd-runner-i-mosaic-black-gx2119', 'stadiumGoods': ''}" +5ec41e95-d0e5-4566-8974-ed6c9648d5cf,GV7912,adidas,Disney x Wmns Superstar 'Bambi',Cloud White/Cloud White/Off White,women,Superstar,2022,2022-04-02,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/402/original/GV7912.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/402/original/GV7912.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/402/original/GV7912.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/disney-x-wmns-superstar-bambi-gv7912', 'flightClub': 'https://flightclub.com/disney-x-wmns-superstar-bambi-gv7912', 'stadiumGoods': ''}" +60e2f0f7-4e6e-4e82-a988-bf4111f65389,GX0989,adidas,Nizza 'Pale Nude',Pale Nude/Sand/Off White,men,Nizza,2022,2022-04-02,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/031/original/GX0989.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/031/original/GX0989.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/031/original/GX0989.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/nizza-pale-nude-gx0989', 'flightClub': 'https://flightclub.com/nizza-pale-nude-gx0989', 'stadiumGoods': ''}" +659101af-0ca1-4caf-8eb5-0e796e1fdd7f,A00391C,Converse,Chuck Taylor All Star Low Easy-On TD 'Glitter Drip',White/Natural Ivory/Purple,infant,Chuck Taylor All Star,2022,2022-04-02,40,40,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/chuck-taylor-all-star-low-easy-on-td-glitter-drip-a00391c', 'flightClub': 'https://flightclub.com/chuck-taylor-all-star-low-easy-on-td-glitter-drip-a00391c', 'stadiumGoods': ''}" +6b28cd9a-c647-4769-a4fc-d0bdf6e3d61c,GW3139,adidas,Gazelle ADV 'White Shadow Olive',Cloud White/Cloud White/Shadow Olive,men,Gazelle,2022,2022-04-02,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/008/original/GW3139.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/008/original/GW3139.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/008/original/GW3139.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gazelle-adv-white-shadow-olive-gw3139', 'flightClub': 'https://flightclub.com/gazelle-adv-white-shadow-olive-gw3139', 'stadiumGoods': ''}" +6e88935f-286d-4030-b417-f346ed7506d4,GX7769,adidas,X9000L4 Heat.RDY 'White Black',Cloud White/Cloud White/Core Black,men,X9000L4,2022,2022-04-02,140,210,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/053/original/GX7769.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/053/original/GX7769.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/053/original/GX7769.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/x9000l4-heat-rdy-white-black-gx7769', 'flightClub': 'https://flightclub.com/x9000l4-heat-rdy-white-black-gx7769', 'stadiumGoods': ''}" +72522ee4-ede0-4632-bfe2-53e13bd0c394,106482-03,Puma,Future Z 2.2 FG AG 'Parisian Night',Parisian Night/Neon Citrus/Festival Fuchsia,men,Future Z 2.2,2022,2022-04-02,130,130,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/future-z-2-2-fg-ag-parisian-night-106482-03', 'flightClub': 'https://flightclub.com/future-z-2-2-fg-ag-parisian-night-106482-03', 'stadiumGoods': ''}" +72c6b885-ebe3-4cff-a10a-d5296cca3ad7,GY4426,adidas,adidas Gazelle Indoor Blondey McCoy,Grey Six/Grey Six/Gum,men,Gazelle,2022,2022-04-02,90,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/898/276/original/GY4426.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/898/276/original/GY4426.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/898/276/original/GY4426.png'}","{'stockX': 'https://stockx.com/adidas-gazelle-indoor-blondey-mccoy', 'goat': 'https://goat.com/sneakers/blondey-mccoy-x-gazelle-indoor-grey-gum-gy4426', 'flightClub': 'https://flightclub.com/blondey-mccoy-x-gazelle-indoor-grey-gum-gy4426', 'stadiumGoods': ''}" +77202c26-cac9-4778-95d8-3b5157e67272,DD1068-004,Nike,Air Huarache 'South Beach',Black/New Emerald/Pure Platinum/Lethal Pink,men,Air Huarache,2022,2022-04-02,120,200,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/932/original/DD1068_004.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/932/original/DD1068_004.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/932/original/DD1068_004.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-huarache-south-beach-dd1068-004', 'flightClub': 'https://flightclub.com/air-huarache-south-beach-dd1068-004', 'stadiumGoods': ''}" +7be91ac9-fb2c-4d9c-b7b9-0692189a4a23,GV7752,adidas,Runfalcon 2.0 J 'Black Blue Rush',Core Black/Blue Rush/Cloud White,youth,Runfalcon,2022,2022-04-02,45,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/397/original/GV7752.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/397/original/GV7752.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/397/original/GV7752.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/runfalcon-2-0-j-black-blue-rush-gv7752', 'flightClub': 'https://flightclub.com/runfalcon-2-0-j-black-blue-rush-gv7752', 'stadiumGoods': ''}" +7f3f5f35-5b03-4e9c-aa21-9b0424b544e1,DV3507-100,Nike,Air Max Plus 'Hiking',White/Kumquat/Black/Marina,men,Air Max Plus,2022,2022-04-02,175,260,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/993/original/DV3507_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/993/original/DV3507_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/993/original/DV3507_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-plus-hiking-dv3507-100', 'flightClub': 'https://flightclub.com/air-max-plus-hiking-dv3507-100', 'stadiumGoods': ''}" +7f73e2de-8a0e-4fbf-82e8-b7308533970b,GY3660,adidas,Samba ADV 'White Shadow Olive',Cloud White/Cloud White/Shadow Olive,men,Samba,2022,2022-04-02,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/062/original/GY3660.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/062/original/GY3660.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/062/original/GY3660.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/samba-adv-white-shadow-olive-gy3660', 'flightClub': 'https://flightclub.com/samba-adv-white-shadow-olive-gy3660', 'stadiumGoods': ''}" +879c4b05-56fd-4274-959d-87acfa81e70a,GX9066,adidas,SoleCourt 'Black Pulse Aqua',Core Black/Pulse Aqua/Solar Red,men,SoleCourt,2022,2022-04-02,160,230,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/056/original/GX9066.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/056/original/GX9066.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/056/original/GX9066.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/solecourt-black-pulse-aqua-gx9066', 'flightClub': 'https://flightclub.com/solecourt-black-pulse-aqua-gx9066', 'stadiumGoods': ''}" +8f3c6721-c4af-4585-8043-3e7e41abb48b,GY8182,adidas,Wmns Forum Low 'White Grey',Cloud White/Cloud White/Grey Two,women,Forum,2022,2022-04-02,95,165,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/072/original/GY8182.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/072/original/GY8182.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/072/original/GY8182.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-forum-low-white-grey-gy8182', 'flightClub': 'https://flightclub.com/wmns-forum-low-white-grey-gy8182', 'stadiumGoods': ''}" +9067a222-1e9c-43e5-9e6a-31f02d102ef2,GY8196,adidas,Forum Low J 'White Pulse Amber',Cloud White/Pulse Amber/Semi Mint Rush,youth,Forum,2022,2022-04-02,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/075/original/GY8196.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/075/original/GY8196.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/075/original/GY8196.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/forum-low-j-white-pulse-amber-gy8196', 'flightClub': 'https://flightclub.com/forum-low-j-white-pulse-amber-gy8196', 'stadiumGoods': ''}" +96700a14-2f6e-481e-b98b-740f60a9a476,GW5623,adidas,Wmns Ozweego 'Off White Acid Orange',Off White/Calvi/Acid Orange,women,Ozweego,2022,2022-04-02,110,180,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/151/original/GW5623.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/151/original/GW5623.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/151/original/GW5623.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ozweego-off-white-acid-orange-gw5623', 'flightClub': 'https://flightclub.com/wmns-ozweego-off-white-acid-orange-gw5623', 'stadiumGoods': ''}" +968f23d7-5a15-47b4-9a42-fce5713a7892,GZ3735,adidas,Superstar 'White Sky Tint',Cloud White/Sky Tint/Sky Rush,men,Superstar,2022,2022-04-02,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/089/original/GZ3735.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/089/original/GZ3735.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/089/original/GZ3735.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/superstar-white-sky-tint-gz3735', 'flightClub': 'https://flightclub.com/superstar-white-sky-tint-gz3735', 'stadiumGoods': ''}" +979a8530-89b2-452e-9b58-d792d484415c,GZ3363,adidas,Racer TR21 I 'Black Solar Yellow',Core Black/Halo Silver/Solar Yellow,infant,Racer TR21,2022,2022-04-02,50,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/088/original/GZ3363.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/088/original/GZ3363.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/088/original/GZ3363.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/racer-tr21-i-black-solar-yellow-gz3363', 'flightClub': 'https://flightclub.com/racer-tr21-i-black-solar-yellow-gz3363', 'stadiumGoods': ''}" +9f8bef75-2afe-4ddc-860b-e5bb50ae90b4,VN0A4BWWA8R,Vans,Vans Sk8-Hi Notchback GORE-TEX DEFCON Woodland Camo,Woodland Camo/Black,men,Sk8,2022,2022-04-02,158,692,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/444/original/VN0A4BWWA8R.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/444/original/VN0A4BWWA8R.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/444/original/VN0A4BWWA8R.png.png'}","{'stockX': 'https://stockx.com/vans-sk8-hi-notchback-gore-tex-defcon-woodland-camo', 'goat': 'https://goat.com/sneakers/defcon-x-sk8-hi-notchback-gtx-black-woodland-camo-vn0a4bwwa8r', 'flightClub': 'https://flightclub.com/defcon-x-sk8-hi-notchback-gtx-black-woodland-camo-vn0a4bwwa8r', 'stadiumGoods': ''}" +a5a0fd9e-bc78-4845-a006-f310415ed625,GZ1600,Reebok,Classic Leather SP J 'White Hint Mint',Footwear White/Hint Mint/Footwear White,youth,Reebok Classic,2022,2022-04-02,65,65,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-leather-sp-j-white-hint-mint-gz1600', 'flightClub': 'https://flightclub.com/classic-leather-sp-j-white-hint-mint-gz1600', 'stadiumGoods': ''}" +a6cd5872-bd81-4b96-8545-a4245ab066bc,BQ4422-400,Jordan,Jordan 1 Retro High 85 Georgetown,College Navy/Summit White-Tech Grey,men,Air Jordan 1,2022,2022-04-02,200,286,"Restored with a heritage build, the Air Jordan 1 Retro High ‘85 ‘Georgetown’ features a familiar two-tone design that celebrates the 40th anniversary of Michael Jordan’s title-clinching shot against the Hoyas on March 29, 1982. The all-leather upper pairs a light grey base with contrasting overlays in College Navy. A woven Nike Air tag adorns the nylon tongue, while a retro Wings logo is stamped on the lateral ankle. The high-top is mounted on a traditional rubber cupsole, fitted with an Air-sole heel unit encapsulated in lightweight polyurethane.","{'360': ['https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871', 'https://images.stockx.com/360/Air-Jordan-1-Retro-High-85-Georgetown/Images/Air-Jordan-1-Retro-High-85-Georgetown/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646752871'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/588/449/original/793045_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/588/449/original/793045_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/588/449/original/793045_00.png.png'}","{'stockX': 'https://stockx.com/air-jordan-1-retro-high-85-georgetown', 'goat': 'https://goat.com/sneakers/air-jordan-1-retro-high-85-georgetown-bq4422-400', 'flightClub': 'https://flightclub.com/air-jordan-1-retro-high-85-georgetown-bq4422-400', 'stadiumGoods': ''}" +ab45df60-4c13-4853-a909-25900b4ab026,A01174C,Converse,Run Star Motion Platform High 'Seasonal Color - Mantra Orange',Mantra Orange/Black/Egret,men,Run Star,2022,2022-04-02,120,120,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/run-star-motion-platform-high-seasonal-color-mantra-orange-a01174c', 'flightClub': 'https://flightclub.com/run-star-motion-platform-high-seasonal-color-mantra-orange-a01174c', 'stadiumGoods': ''}" +b02eb494-8f9d-4f1a-9b0a-e3fb29a9e7db,GW8093,adidas,LEGO x Sport Pro I 'Red',Red/Red/Cloud White,infant,Adidas Sport,2022,2022-04-02,52,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/020/original/GW8093.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/020/original/GW8093.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/020/original/GW8093.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lego-x-sport-pro-i-red-gw8093', 'flightClub': 'https://flightclub.com/lego-x-sport-pro-i-red-gw8093', 'stadiumGoods': ''}" +b7bcdd35-d29c-46de-84ff-a7ce6db67baf,A02584C,Converse,Chuck Taylor All Star High 'Washed Canvas - Light Field Surplus',Light Field Surplus/Egret,men,Chuck Taylor All Star,2022,2022-04-02,65,65,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/chuck-taylor-all-star-high-washed-canvas-light-field-surplus-a02584c', 'flightClub': 'https://flightclub.com/chuck-taylor-all-star-high-washed-canvas-light-field-surplus-a02584c', 'stadiumGoods': ''}" +ba6102a5-3a9e-4b77-9642-4348240ddc2f,GY0785,adidas,Kevin Lyons x ZX 5000 Boost J 'Monster',Chalk White/Semi Solar Yellow/Cloud White,youth,ZX 5000,2022,2022-04-02,140,210,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/057/original/GY0785.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/057/original/GY0785.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/057/original/GY0785.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/kevin-lyons-x-zx-5000-boost-j-monster-gy0785', 'flightClub': 'https://flightclub.com/kevin-lyons-x-zx-5000-boost-j-monster-gy0785', 'stadiumGoods': ''}" +bd80415d-d82d-43ef-9c2d-81e70763a234,GX1245,adidas,Parley x UltraBoost 21 'Orbit Grey Chalky Brown',Orbit Grey/Chalky Brown/Almost Lime,men,UltraBoost 21,2022,2022-04-02,220,290,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/032/original/GX1245.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/032/original/GX1245.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/032/original/GX1245.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/parley-x-ultraboost-21-orbit-grey-chalky-brown-gx1245', 'flightClub': 'https://flightclub.com/parley-x-ultraboost-21-orbit-grey-chalky-brown-gx1245', 'stadiumGoods': ''}" +c04d5f6c-b094-4b0b-9bd1-cd232567af8e,GV7931,adidas,Disney x Wmns Stan Smith 'Bambi',Cloud White/Clear Pink/Gold Metallic,women,Stan Smith,2022,2022-04-02,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/404/original/GV7931.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/404/original/GV7931.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/404/original/GV7931.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/disney-x-wmns-stan-smith-bambi-gv7931', 'flightClub': 'https://flightclub.com/disney-x-wmns-stan-smith-bambi-gv7931', 'stadiumGoods': ''}" +c8ed241b-fb76-40bf-9651-fe18d60ae65c,GZ3248,adidas,Wmns X9000L4 Heat.RDY 'Clear Orange',Clear Orange/Clear Orange/Wonder Mauve,women,X9000L4,2022,2022-04-02,140,210,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/087/original/GZ3248.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/087/original/GZ3248.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/087/original/GZ3248.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-x9000l4-heat-rdy-clear-orange-gz3248', 'flightClub': 'https://flightclub.com/wmns-x9000l4-heat-rdy-clear-orange-gz3248', 'stadiumGoods': ''}" +d2310a0a-fe76-4102-be05-5eafc58434b6,GY6717,adidas,Grand Court J 'Blue Tint',Blue Tint/Blue Tint/Cloud White,youth,Grand Court,2022,2022-04-02,50,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/068/original/GY6717.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/068/original/GY6717.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/068/original/GY6717.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/grand-court-j-blue-tint-gy6717', 'flightClub': 'https://flightclub.com/grand-court-j-blue-tint-gy6717', 'stadiumGoods': ''}" +d5d692e9-79b5-4c25-bcd0-7b4e5b1eb78e,A00621C,Converse,Chuck 70 High 'Seasonal Color - Soft Juniper',Soft Juniper/Egret/Black,men,Chuck 70,2022,2022-04-02,85,155,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/chuck-70-high-seasonal-color-soft-juniper-a00621c', 'flightClub': 'https://flightclub.com/chuck-70-high-seasonal-color-soft-juniper-a00621c', 'stadiumGoods': ''}" +dee9b1a1-70c1-47aa-8a0e-33997081c977,GX0621,adidas,Wmns Puremotion Super 'Legend Ink Light Purple',Legend Ink/Legend Ink/Light Purple,women,Puremotion,2022,2022-04-02,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/029/original/GX0621.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/029/original/GX0621.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/029/original/GX0621.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-puremotion-super-legend-ink-light-purple-gx0621', 'flightClub': 'https://flightclub.com/wmns-puremotion-super-legend-ink-light-purple-gx0621', 'stadiumGoods': ''}" +dfd0306e-5185-4366-8007-024806b67d5f,GY4485,adidas,Wmns Cloudfoam Pure 2.0 'White Acid Red',Cloud White/Acid Red/Acid Red,women,Cloudfoam Pure,2022,2022-04-02,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/064/original/GY4485.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/064/original/GY4485.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/064/original/GY4485.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-cloudfoam-pure-2-0-white-acid-red-gy4485', 'flightClub': 'https://flightclub.com/wmns-cloudfoam-pure-2-0-white-acid-red-gy4485', 'stadiumGoods': ''}" +dfea3744-5079-478c-a6a7-1caaffdf9c37,GX4206,adidas,Wmns Racer TR21 'Black Gum',Core Black/Core Black/Gum,women,Racer TR21,2022,2022-04-02,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/045/original/GX4206.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/045/original/GX4206.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/045/original/GX4206.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-racer-tr21-black-gum-gx4206', 'flightClub': 'https://flightclub.com/wmns-racer-tr21-black-gum-gx4206', 'stadiumGoods': ''}" +e1d67c37-4014-45c6-a58d-d0e8e8f00349,GW3141,adidas,Gazelle ADV 'Black Gold Metallic',Core Black/Core Black/Gold Metallic,men,Gazelle,2022,2022-04-02,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/009/original/GW3141.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/009/original/GW3141.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/009/original/GW3141.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gazelle-adv-black-gold-metallic-gw3141', 'flightClub': 'https://flightclub.com/gazelle-adv-black-gold-metallic-gw3141', 'stadiumGoods': ''}" +e5b807b0-5dce-4ca4-a105-3514052e5cda,GX8087,adidas,Wmns UltraBoost 22 Heat.RDY 'White Tint Pulse Mint',White Tint/Pulse Mint/Purple Rush,women,UltraBoost 22,2022,2022-04-02,190,260,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/054/original/GX8087.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/054/original/GX8087.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/054/original/GX8087.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ultraboost-22-heat-rdy-white-tint-pulse-mint-gx8087', 'flightClub': 'https://flightclub.com/wmns-ultraboost-22-heat-rdy-white-tint-pulse-mint-gx8087', 'stadiumGoods': ''}" +eb0293c2-b360-445e-9a05-ad8a9dbabd4f,GW3159,adidas,Samba ADV 'Black Gum',Core Black/Cloud White/Gold Metallic,men,Samba,2022,2022-04-02,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/010/original/GW3159.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/010/original/GW3159.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/010/original/GW3159.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/samba-adv-black-gum-gw3159', 'flightClub': 'https://flightclub.com/samba-adv-black-gum-gw3159', 'stadiumGoods': ''}" +f2105ad7-7f0a-4e65-b41d-235ca063a920,GX6216,adidas,Wmns EQ21 Run 'White Speckled',Cloud White/Cloud White/Almost Lime,women,EQ21 Run,2022,2022-04-02,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/049/original/GX6216.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/049/original/GX6216.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/049/original/GX6216.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-eq21-run-white-speckled-gx6216', 'flightClub': 'https://flightclub.com/wmns-eq21-run-white-speckled-gx6216', 'stadiumGoods': ''}" +f2d89a5b-9b48-4d03-a828-a95d10f0a92a,GX2149,adidas,Wmns NMD_R1 'White Clear Mint',Cloud White/Cloud White/Clear Mint,women,NMD Runner,2022,2022-04-02,150,220,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/035/original/GX2149.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/035/original/GX2149.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/035/original/GX2149.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nmd_r1-white-clear-mint-gx2149', 'flightClub': 'https://flightclub.com/wmns-nmd_r1-white-clear-mint-gx2149', 'stadiumGoods': ''}" +f5a1a6f4-7d0e-4a0a-a939-817e21a6fd22,GY5919,adidas,Wmns Forum Low 'White Tint Orbit Grey',Cloud White/White Tint/Orbit Grey,women,Forum,2022,2022-04-02,95,165,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/067/original/GY5919.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/067/original/GY5919.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/067/original/GY5919.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-forum-low-white-tint-orbit-grey-gy5919', 'flightClub': 'https://flightclub.com/wmns-forum-low-white-tint-orbit-grey-gy5919', 'stadiumGoods': ''}" +ffd70291-4fa4-43e5-bc66-87d75ae436e3,GX3299,adidas,Disney x Superstar 360 I 'Bambi',Light Pink/Cloud White/Light Purple,infant,Superstar,2022,2022-04-02,45,45,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/043/original/GX3299.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/043/original/GX3299.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/043/original/GX3299.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/disney-x-superstar-360-i-bambi-gx3299', 'flightClub': 'https://flightclub.com/disney-x-superstar-360-i-bambi-gx3299', 'stadiumGoods': ''}" +0c7577a6-d7a3-4350-bff3-6e8b28aa69b8,M2002RDD,New Balance,New Balance 2002R Protection Pack Mirage Grey,Mirage Grey/Grey Blue,men,2002R,2022,2022-04-01,150,397,"Launching as part of the 2022 ‘Protection Pack,’ the New Balance 2002R ‘Mirage Grey’ showcases a neutral palette that recalls the iconic M1300JP colorway. The lifestyle runner carries a slate-colored mesh upper with a light grey ‘N’ logo outlined in blue. The shoe’s defining feature takes the form of grey suede overlays throughout the forefoot, quarter panel, and heel, complete with raw and ragged edges that result in a uniquely unfinished look. A weathered finish is applied to the ABZORB midsole and durable rubber outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/048/876/original/M2002RDD.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/048/876/original/M2002RDD.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/048/876/original/M2002RDD.png.png'}","{'stockX': 'https://stockx.com/new-balance-2002r-protection-pack-mirage-grey', 'goat': 'https://goat.com/sneakers/2002r-protection-pack-mirage-grey-m2002rdd', 'flightClub': 'https://flightclub.com/2002r-protection-pack-mirage-grey-m2002rdd', 'stadiumGoods': ''}" +0c7a76e3-6bb7-49ad-a3c8-e175e640c91f,GZ5738,adidas,adidas Ultra Boost 22 Marimekko (W),Cloud White / Cloud White / Pearl Citrine,women,UltraBoost 22,2022,2022-04-01,190,210,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/510/original/GZ5738.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/510/original/GZ5738.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/510/original/GZ5738.png'}","{'stockX': 'https://stockx.com/adidas-ultra-boost-22-marimekko-w', 'goat': 'https://goat.com/sneakers/marimekko-x-wmns-ultraboost-22-poppy-gz5738', 'flightClub': 'https://flightclub.com/marimekko-x-wmns-ultraboost-22-poppy-gz5738', 'stadiumGoods': ''}" +16bd7d4d-bb59-4529-a3a0-14d5eede49ff,M2002RDH,New Balance,2002R 'Protection Pack - Pink',,men,2002R,2022,2022-04-01,150,1100,"Releasing as part of the 2022 ‘Protection Pack,’ the New Balance 2002R ‘Pink’ pairs candy-bright hues with an unfinished aesthetic. Complementary shades of pink and lavender are applied to the revamped upper, featuring an airy mesh base with ragged-edged suede overlays throughout the forefoot, heel, and quarter panel. The lifestyle runner is mounted on a pre-distressed midsole borrowed from the 860v2, complete with ABZORB cushioning and shock-absorbing N-ergy technology in the heel.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/048/880/original/M2002RDH.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/048/880/original/M2002RDH.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/048/880/original/M2002RDH.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/2002r-protection-pack-pink-m2002rdh', 'flightClub': 'https://flightclub.com/2002r-protection-pack-pink-m2002rdh', 'stadiumGoods': ''}" +1aa813ca-5e37-4343-8db9-0445c9e3eabf,GW0567,adidas,Rich Mnisi x Wmns Stan Smith 'Roses - White',Cloud White/Supplier Colour/Gold Metallic,women,Stan Smith,2022,2022-04-01,100,138,"The Rich Mnisi x adidas women’s Stan Smith ‘Roses’ is taken from an apparel and footwear collection with the South African fashion designer. Mnisi’s take on the iconic silhouette features a white synthetic leather upper made with 50% recycled content. Perforated three-stripes adorn the medial side, while the opposite side displays a stylized rose graphic in multicolor embroidery. The sneaker’s top eyelets are rendered in metallic gold, matching the traditional branding elements that decorate the tongue and heel tab.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/254/607/original/GW0567.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/254/607/original/GW0567.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/254/607/original/GW0567.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rich-mnisi-x-wmns-stan-smith-roses-white-gw0567', 'flightClub': 'https://flightclub.com/rich-mnisi-x-wmns-stan-smith-roses-white-gw0567', 'stadiumGoods': ''}" +1d8b6010-bc41-4cde-9e18-a45659244a3b,DM7606-300,Nike,Wmns Dunk Low LX 'Avocado',Sequoia/Sequoia/Zinnia/Eucalyptus Fog,women,Dunk,2022,2022-04-01,120,169,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/385/original/DM7606_300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/385/original/DM7606_300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/385/original/DM7606_300.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-dunk-low-lx-avocado-dm7606-300', 'flightClub': 'https://flightclub.com/wmns-dunk-low-lx-avocado-dm7606-300', 'stadiumGoods': ''}" +1f4ba72e-b7a0-48a9-a2de-1fef95f73d25,DO8965-002,Jordan,Jordan Why Not Zer0.5 'Raging Grace',Black/Iron Grey/Wolf Grey/Bright Mango,men,Jordan Why Not Zer0.5,2022,2022-04-01,130,210,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/977/original/DO8965_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/977/original/DO8965_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/977/original/DO8965_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jordan-why-not-zer0-5-raging-grace-do8965-002', 'flightClub': 'https://flightclub.com/jordan-why-not-zer0-5-raging-grace-do8965-002', 'stadiumGoods': ''}" +217d2e67-80bb-42c9-aa59-031709719813,GY4466,adidas,Wmns Puremotion Adapt 'White Acid Red',Cloud White/Cloud White/Acid Red,women,Puremotion Adapt,2022,2022-04-01,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/063/original/GY4466.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/063/original/GY4466.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/063/original/GY4466.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-puremotion-adapt-white-acid-red-gy4466', 'flightClub': 'https://flightclub.com/wmns-puremotion-adapt-white-acid-red-gy4466', 'stadiumGoods': ''}" +240052cb-e023-4be5-af10-6f057073dab8,GW8569,adidas,Rich Mnisi x Wmns Her Court 'Roses - Black',Core Black/Cloud White/Supplier Colour,women,Her Court,2022,2022-04-01,110,180,"Launching as part of a collaborative collection with the South African fashion designer, the Rich Mnisi x adidas women’s Her Court ‘Roses’ delivers a casual sneaker built with exaggerated tooling. Made with 50% recycled content, the black canvas upper features a multicolor floral print with the designer’s name spelled out in scattered block lettering. Metallic gold adidas branding decorates the tongue, along with a woven tag affixed to the lateral eyestay. The low-top rides on a platform midsole in a solid Cloud White finish.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/254/633/original/GW8569.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/254/633/original/GW8569.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/254/633/original/GW8569.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rich-mnisi-x-wmns-her-court-roses-black-gw8569', 'flightClub': 'https://flightclub.com/rich-mnisi-x-wmns-her-court-roses-black-gw8569', 'stadiumGoods': ''}" +268bf6cf-3b6e-408f-87e2-08027d7c7390,DH0219-100,Nike,NikeCourt Zoom NXT 'White Black',White/Black,men,NikeCourt Zoom NXT,2022,2022-04-01,140,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/940/original/DH0219_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/940/original/DH0219_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/940/original/DH0219_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/nikecourt-zoom-nxt-white-black-dh0219-100', 'flightClub': 'https://flightclub.com/nikecourt-zoom-nxt-white-black-dh0219-100', 'stadiumGoods': ''}" +286bc600-1217-4ab3-994b-17726f815f4f,GY6739,adidas,Racer TR2 I 'White Almost Pink',Cloud White/Almost Pink/Blue Tint,infant,Racer TR21,2022,2022-04-01,50,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/070/original/GY6739.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/070/original/GY6739.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/070/original/GY6739.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/racer-tr2-i-white-almost-pink-gy6739', 'flightClub': 'https://flightclub.com/racer-tr2-i-white-almost-pink-gy6739', 'stadiumGoods': ''}" +3632c08b-38dd-433f-a435-4ed4486cc1c8,DQ8344-600/DQ8343-600,Nike,Nike Lebron 19 Low Hawaii,Orange/Purple-Volt,men,Nike Lebron 19 Low,2022,2022-04-01,160,185,,"{'360': [], 'original': 'https://images.stockx.com/images/Nike-Lebron-19-Low-Hawaii.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1647495714', 'small': 'https://images.stockx.com/images/Nike-Lebron-19-Low-Hawaii.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1647495714', 'thumbnail': 'https://images.stockx.com/images/Nike-Lebron-19-Low-Hawaii.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1647495714'}","{'stockX': 'https://stockx.com/nike-lebron-19-low-hawaii', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +36dfb939-f127-41e9-8743-4ace67caff7a,DH0219-010,Nike,NikeCourt Zoom NXT 'Black White',Black/White,men,NikeCourt Zoom NXT,2022,2022-04-01,140,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/939/original/DH0219_010.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/939/original/DH0219_010.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/939/original/DH0219_010.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/nikecourt-zoom-nxt-black-white-dh0219-010', 'flightClub': 'https://flightclub.com/nikecourt-zoom-nxt-black-white-dh0219-010', 'stadiumGoods': ''}" +48c93923-70d9-4bed-bf9c-450b65931741,M2002RDE,New Balance,New Balance 2002R Protection Pack Vintage Orange,Vintage Orange/Grey,men,2002R,2022,2022-04-01,150,1000,"The New Balance 2002R ‘Vintage Orange’ is taken from the 2022 ‘Protection Pack,’ highlighted by a deconstructed take on the retro-inspired lifestyle runner. This pair sports an orange mesh upper with a series of tonal suede overlays that feature raw and tattered edges that give the shoe a uniquely unfinished aesthetic. The monochrome finish is interrupted by a white ‘N’ logo and matte silver heel tab. Lightweight cushioning is provided by an ABZORB midsole with N-ergy technology in the heel for improved shock absorption.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/048/878/original/M2002RDE.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/048/878/original/M2002RDE.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/048/878/original/M2002RDE.png.png'}","{'stockX': 'https://stockx.com/new-balance-2002r-protection-pack-vintage-orange', 'goat': 'https://goat.com/sneakers/2002r-protection-pack-vintage-orange-m2002rde', 'flightClub': 'https://flightclub.com/2002r-protection-pack-vintage-orange-m2002rde', 'stadiumGoods': ''}" +494fe0d7-c3f4-4c5d-9a14-ef058cfba897,M2002RDF,New Balance,New Balance 2002R Protection Pack Dark Navy,Dark Navy/Blue/Grey,men,2002R,2022,2022-04-01,150,374,"Taken from the 2022 ‘Protection Pack,’ the New Balance 2002R ‘Blue’ delivers a tonal colorway of the retro-inspired lifestyle runner. The breathable blue mesh upper is fortified with a series of navy suede overlays, complete with tattered edges that give the shoe a dramatically distressed aesthetic. A molded ‘N’ logo adorns the quarter panel, while 2002R branding is stamped below the lateral collar. The sneaker rides on a two-tone ABZORB midsole with N-ergy cushioning in the heel.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/048/879/original/M2002RDF.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/048/879/original/M2002RDF.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/048/879/original/M2002RDF.png.png'}","{'stockX': 'https://stockx.com/new-balance-2002r-protection-pack-dark-navy', 'goat': 'https://goat.com/sneakers/2002r-protection-pack-blue-m2002rdf', 'flightClub': 'https://flightclub.com/2002r-protection-pack-blue-m2002rdf', 'stadiumGoods': ''}" +4f2c7122-f3ec-410d-9414-30091c233b5f,GZ1949,adidas,Wmns EQ21 Run 'White Tie Dye',Cloud White/Cloud White/Almost Lime,women,EQ21 Run,2022,2022-04-01,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/084/original/GZ1949.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/084/original/GZ1949.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/084/original/GZ1949.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-eq21-run-white-tie-dye-gz1949', 'flightClub': 'https://flightclub.com/wmns-eq21-run-white-tie-dye-gz1949', 'stadiumGoods': ''}" +53b0509b-7411-45b4-a130-dfe50075858e,DH7561-100,Nike,Nike Air Force 1 Low Pecan,White/Pecan-White,men,Air Force 1,2022,2022-04-01,100,121,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/204/411/original/DH7561_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/204/411/original/DH7561_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/204/411/original/DH7561_100.png.png'}","{'stockX': 'https://stockx.com/nike-air-force-1-low-pecan', 'goat': 'https://goat.com/sneakers/air-force-1-07-pecan-dh7561-100', 'flightClub': 'https://flightclub.com/air-force-1-07-pecan-dh7561-100', 'stadiumGoods': ''}" +558af1bd-187c-4d7f-bb52-02e0effd6c6c,GZ0441,adidas,UltraBoost Climacool 2 DNA 'Shadow Navy Altered Blue',Shadow Navy/Altered Blue/Sky Rush,men,UltraBoost,2022,2022-04-01,190,260,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/078/original/GZ0441.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/078/original/GZ0441.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/078/original/GZ0441.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultraboost-climacool-2-dna-shadow-navy-altered-blue-gz0441', 'flightClub': 'https://flightclub.com/ultraboost-climacool-2-dna-shadow-navy-altered-blue-gz0441', 'stadiumGoods': ''}" +5651586c-ed45-49c3-8cf7-5e34756de002,1201A526-300,ASICS,Gel Lyte 3 'Academic Scholar Pack',Hunter Green,men,Gel Lyte 3,2022,2022-04-01,110,109,"The ASICS Gel Lyte 3 ‘Academic Scholar Pack’ dresses the retro runner in a varsity-inspired color palette. Soft suede covers the majority of the upper in contrasting dark green and violet hues. Matching purple side stripes are outlined in yellow, with the vibrant hue reappearing on the plush textile that lines the collar and signature split tongue. The sneaker is mounted on a two-tone EVA midsole with Gel cushioning in the heel. Underfoot, a solid purple rubber outsole provides durable traction.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/643/281/original/908611_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/643/281/original/908611_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/643/281/original/908611_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-lyte-3-hunter-green-purple-1201a526-300', 'flightClub': 'https://flightclub.com/gel-lyte-3-hunter-green-purple-1201a526-300', 'stadiumGoods': ''}" +5c277d48-8266-4e92-b26f-38712709d6d6,GZ3572,adidas,Rich Mnisi x Wmns Astir 'Roses - Black',Core Black/Green/Clear Pink,women,Astir,2022,2022-04-01,100,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/594/original/GZ3572.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/594/original/GZ3572.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/594/original/GZ3572.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rich-mnisi-x-wmns-astir-roses-black-gz3572', 'flightClub': 'https://flightclub.com/rich-mnisi-x-wmns-astir-roses-black-gz3572', 'stadiumGoods': ''}" +5c7aaf60-eb86-42e1-9db5-4c9e8c033975,GZ0664,adidas,Ventice Climacool 'Black White',Core Black/Core Black/Cloud White,men,Ventice,2022,2022-04-01,80,137,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/081/original/GZ0664.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/081/original/GZ0664.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/081/original/GZ0664.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ventice-climacool-black-white-gz0664', 'flightClub': 'https://flightclub.com/ventice-climacool-black-white-gz0664', 'stadiumGoods': ''}" +61016209-58f6-4634-a38f-743b4ae3b606,GW0564,adidas,Rich Mnisi x Wmns Adilette Slide 'Roses',Core Black/Cloud White/Supplier Colour,women,Adilette,2022,2022-04-01,60,110,"The Rich Mnisi x adidas women’s Adilette Slide ‘Roses’ is drawn from a debut collection with the South African designer, exploring themes of community, heritage and self-expression. Made with 50% recycled materials, the black canvas upper features a multicolor floral print with wraparound three-stripes in serrated white leather. adidas branding is stamped on a contoured footbed built with genuine cork. Underfoot, a solid rubber outsole delivers durable traction.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/374/889/original/GW0564.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/374/889/original/GW0564.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/374/889/original/GW0564.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rich-mnisi-x-wmns-adilette-slide-roses-gw0564', 'flightClub': 'https://flightclub.com/rich-mnisi-x-wmns-adilette-slide-roses-gw0564', 'stadiumGoods': ''}" +6c7c884b-cb4e-4bb0-8273-2c2583f25b6c,GX5564,adidas,adidas Ultra Boost 22 Core Black Mint Rush,Core Black / Core Black / Mint Rush,men,UltraBoost 22,2022,2022-04-01,190,216,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/730/original/GX5564.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/730/original/GX5564.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/730/original/GX5564.png.png'}","{'stockX': 'https://stockx.com/adidas-ultra-boost-22-core-black-mint-rush', 'goat': 'https://goat.com/sneakers/ultraboost-22-black-mint-rush-gx5564', 'flightClub': 'https://flightclub.com/ultraboost-22-black-mint-rush-gx5564', 'stadiumGoods': ''}" +6fcb411a-0712-4f00-bb0e-65630fe8de90,GW0563,adidas,Rich Mnisi x Wmns NMD_R1 'Roses - White',Cloud White/Supplier Colour/Clear Pink,women,NMD Runner,2022,2022-04-01,150,150,"The Rich Mnisi x adidas women’s NMD_R1 ‘Roses’ makes over the classic silhouette with playful details and a sustainable build. The South African fashion designer applies a pop-art rose print to the heel panel, webbing pull loop, and welded three-stripes. The multicolor arrangement enlivens a white textile knit upper made with a 50/50 blend of Parley Ocean Plastic and recycled polyester. Responsive cushioning is provided by a full-length Boost midsole, featuring signature EVA plugs in a delicate pink hue.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/204/447/original/GW0563.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/204/447/original/GW0563.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/204/447/original/GW0563.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rich-mnisi-x-wmns-nmd_r1-roses-white-gw0563', 'flightClub': 'https://flightclub.com/rich-mnisi-x-wmns-nmd_r1-roses-white-gw0563', 'stadiumGoods': ''}" +80d59dfb-0b1f-4b03-88a1-e0c1be35a900,GX3059,adidas,Wmns SolarGlide 4 ST 'Grey Silver Metallic',Grey One/Silver Metallic/Light Flash Orange,women,SolarGlide,2022,2022-04-01,140,210,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/041/original/GX3059.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/041/original/GX3059.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/041/original/GX3059.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-solarglide-4-st-grey-silver-metallic-gx3059', 'flightClub': 'https://flightclub.com/wmns-solarglide-4-st-grey-silver-metallic-gx3059', 'stadiumGoods': ''}" +80f4bec2-37d1-4e67-995d-4711612cd3d6,GZ0663,adidas,Ventice Climacool 'White Silver Metallic',Cloud White/Cloud White/Silver Metallic,men,Ventice,2022,2022-04-01,80,137,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/080/original/GZ0663.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/080/original/GZ0663.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/080/original/GZ0663.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ventice-climacool-white-silver-metallic-gz0663', 'flightClub': 'https://flightclub.com/ventice-climacool-white-silver-metallic-gz0663', 'stadiumGoods': ''}" +91d00302-d469-4ff6-832f-c13b7cbdce1c,BQ6472-308,Jordan,Jordan 1 Mid Dark Teal Green (W),Dark Teal Green/Dark Teal Green,women,Air Jordan 1,2022,2022-04-01,120,152,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/581/original/BQ6472_308.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/581/original/BQ6472_308.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/581/original/BQ6472_308.png.png'}","{'stockX': 'https://stockx.com/air-jordan-1-mid-dark-teal-green-w', 'goat': 'https://goat.com/sneakers/wmns-air-jordan-1-mid-dark-teal-green-bq6472-308', 'flightClub': 'https://flightclub.com/wmns-air-jordan-1-mid-dark-teal-green-bq6472-308', 'stadiumGoods': ''}" +937c1f23-6741-4891-b7cd-371266aaeefe,GX3298,adidas,Disney x Superstar 360 I 'Thumper',Light Pink/Cloud White/Light Purple,infant,Superstar,2022,2022-04-01,45,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/042/original/GX3298.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/042/original/GX3298.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/042/original/GX3298.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/disney-x-superstar-360-i-thumper-gx3298', 'flightClub': 'https://flightclub.com/disney-x-superstar-360-i-thumper-gx3298', 'stadiumGoods': ''}" +95fcc014-063c-4eb3-a4f1-8146c132ad2b,GZ1654,adidas,Disney x Wmns Nizza Trek 'Bambi',Cloud White/Legacy Burgundy/Off White,women,Nizza,2022,2022-04-01,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/083/original/GZ1654.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/083/original/GZ1654.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/083/original/GZ1654.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/disney-x-wmns-nizza-trek-bambi-gz1654', 'flightClub': 'https://flightclub.com/disney-x-wmns-nizza-trek-bambi-gz1654', 'stadiumGoods': ''}" +9adf58ca-bb47-418f-aef1-4fa0d322bef2,GZ8180,adidas,Racer TR21 'Focus Olive',Focus Olive/Orbit Green/Metal Grey,men,Racer TR21,2022,2022-04-01,75,75,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/097/original/GZ8180.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/097/original/GZ8180.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/097/original/GZ8180.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/racer-tr21-focus-olive-gz8180', 'flightClub': 'https://flightclub.com/racer-tr21-focus-olive-gz8180', 'stadiumGoods': ''}" +9e92e17d-b5dd-4d91-b022-6472cee5de76,DO8967-002,Jordan,Jordan Why Not Zer0.5 GS 'Raging Grace',Black/Iron Grey/Wolf Grey/Bright Mango,youth,Jordan Why Not Zer0.5,2022,2022-04-01,105,185,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/302/978/original/DO8967_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/302/978/original/DO8967_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/302/978/original/DO8967_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jordan-why-not-zer0-5-gs-raging-grace-do8967-002', 'flightClub': 'https://flightclub.com/jordan-why-not-zer0-5-gs-raging-grace-do8967-002', 'stadiumGoods': ''}" +a0401a6e-b0a2-485b-83e0-6675b70a3ac3,GX9329,adidas,adidas Ultra Boost 5.0 DNA Bleach Dye Pack Cardboard,Core Black/Core Black/Cardboard,men,UltraBoost 5.0,2022,2022-04-01,190,197,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/745/original/GX9329.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/745/original/GX9329.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/745/original/GX9329.png.png'}","{'stockX': 'https://stockx.com/adidas-ultra-boost-50-dna-bleach-dye-pack-cardboard', 'goat': 'https://goat.com/sneakers/ultraboost-5-0-dna-acid-wash-gx9329', 'flightClub': 'https://flightclub.com/ultraboost-5-0-dna-acid-wash-gx9329', 'stadiumGoods': ''}" +a755766b-e39b-4e95-b35f-d019682c8899,DC9134-501,Nike,Nike Kyrie 8 Infinity Future Past,Blue/Gold/White,men,Kyrie 8,2022,2022-04-01,130,144,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/619/original/DC9134_501.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/619/original/DC9134_501.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/619/original/DC9134_501.png.png'}","{'stockX': 'https://stockx.com/nike-kyrie-8-infinity-future-past', 'goat': 'https://goat.com/sneakers/kyrie-8-ep-future-past-dc9134-501', 'flightClub': 'https://flightclub.com/kyrie-8-ep-future-past-dc9134-501', 'stadiumGoods': ''}" +afb0442d-9795-497d-a67b-fbeb2fc7bafc,GX9328,adidas,adidas Ultra Boost 5.0 DNA Bleach Dye Pack Cardboard (W),Core Black/Core Black/Cardboard,women,UltraBoost 5.0,2022,2022-04-01,190,224,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/744/original/GX9328.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/744/original/GX9328.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/744/original/GX9328.png.png'}","{'stockX': 'https://stockx.com/adidas-ultra-boost-50-dna-bleach-dye-pack-cardboard-w', 'goat': 'https://goat.com/sneakers/wmns-ultraboost-5-0-dna-acid-wash-gx9328', 'flightClub': 'https://flightclub.com/wmns-ultraboost-5-0-dna-acid-wash-gx9328', 'stadiumGoods': ''}" +b0b47ec0-69ab-43cd-998e-c6e14a48bbaf,A02585C,Converse,Chuck Taylor All Star High 'Washed Canvas - Kava Bliss',Kava Bliss/Egret/Black,men,Chuck Taylor All Star,2022,2022-04-01,65,65,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/chuck-taylor-all-star-high-washed-canvas-kava-bliss-a02585c', 'flightClub': 'https://flightclub.com/chuck-taylor-all-star-high-washed-canvas-kava-bliss-a02585c', 'stadiumGoods': ''}" +b3b1c425-c160-468f-8dcc-84307f0b4d27,GW6197,adidas,Wmns Supernova 'Sky Rush Gum',Sky Rush/Cloud White/Turbo,women,Supernova,2022,2022-04-01,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/016/original/GW6197.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/016/original/GW6197.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/016/original/GW6197.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-supernova-sky-rush-gum-gw6197', 'flightClub': 'https://flightclub.com/wmns-supernova-sky-rush-gum-gw6197', 'stadiumGoods': ''}" +bef46f8a-bdb1-4047-8d65-1e79b43bd5fd,GY6778,adidas,EQ21 Run 'Grey Legacy Indigo',Grey Two/Grey Three/Legacy Indigo,men,EQ21 Run,2022,2022-04-01,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/071/original/GY6778.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/071/original/GY6778.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/071/original/GY6778.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/eq21-run-grey-legacy-indigo-gy6778', 'flightClub': 'https://flightclub.com/eq21-run-grey-legacy-indigo-gy6778', 'stadiumGoods': ''}" +c3054d93-b424-4f1f-9fd0-b366f0183553,GX4209,adidas,Racer TR21 'Black Gum',Core Black/Core Black/Gum,men,Racer TR21,2022,2022-04-01,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/048/original/GX4209.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/048/original/GX4209.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/048/original/GX4209.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/racer-tr21-black-gum-gx4209', 'flightClub': 'https://flightclub.com/racer-tr21-black-gum-gx4209', 'stadiumGoods': ''}" +c6d2281e-f928-41f7-815b-7da9d13720a6,GX8086,adidas,adidas Ultra Boost 22 Heat.Rdy Legacy Indigo Pulse Mint,Legacy Indigo / Pulse Mint / Purple Rush,men,adidas Ultra Boost 22 Heat.Rdy,2022,2022-04-01,190,190,,"{'360': [], 'original': 'https://images.stockx.com/images/adidas-Ultra-Boost-22-HeatRdy-Legacy-Indigo-Pulse-Mint.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648663801', 'small': 'https://images.stockx.com/images/adidas-Ultra-Boost-22-HeatRdy-Legacy-Indigo-Pulse-Mint.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648663801', 'thumbnail': 'https://images.stockx.com/images/adidas-Ultra-Boost-22-HeatRdy-Legacy-Indigo-Pulse-Mint.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648663801'}","{'stockX': 'https://stockx.com/adidas-ultra-boost-22-heatrdy-legacy-indigo-pulse-mint', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +cb174933-53f0-4ec3-9896-40fc4d954f6e,GZ3737,adidas,Superstar 'White Ecru Tint',Cloud White/Ecru Tint/Orange Rush,men,Superstar,2022,2022-04-01,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/090/original/GZ3737.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/090/original/GZ3737.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/090/original/GZ3737.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/superstar-white-ecru-tint-gz3737', 'flightClub': 'https://flightclub.com/superstar-white-ecru-tint-gz3737', 'stadiumGoods': ''}" +d5ea4060-6baf-4a8a-b54f-bcec788f2136,DR0296-200,Nike,Nike Air Force 1 Mid Berlin,Cave Stone/White-Off Noir-Washed Teal,men,Nike Air Force 1 Mid,2022,2022-04-01,130,130,,"{'360': [], 'original': 'https://images.stockx.com/images/Nike-Air-Force-1-Mid-Berlin.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1645274657', 'small': 'https://images.stockx.com/images/Nike-Air-Force-1-Mid-Berlin.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1645274657', 'thumbnail': 'https://images.stockx.com/images/Nike-Air-Force-1-Mid-Berlin.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1645274657'}","{'stockX': 'https://stockx.com/nike-air-force-1-mid-berlin', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +d6d2c63c-a38a-42a3-a350-4e9001aa8c13,GX8003,adidas,adidas Ultra Boost 22 Legacy Indigo Purple Rush (W),Legacy Indigo / Legacy Indigo / Purple Rush,women,UltraBoost 22,2022,2022-04-01,190,260,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/736/original/GX8003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/736/original/GX8003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/736/original/GX8003.png.png'}","{'stockX': 'https://stockx.com/adidas-ultra-boost-22-legacy-indigo-purple-rush-w', 'goat': 'https://goat.com/sneakers/wmns-ultraboost-22-legacy-indigo-gx8003', 'flightClub': 'https://flightclub.com/wmns-ultraboost-22-legacy-indigo-gx8003', 'stadiumGoods': ''}" +e04a1775-26b2-4534-adff-c99789cda7f6,GY3808,adidas,adidas Crazy 1 Sunshine (2022),Yellow/Black/Grey,men,Crazy 1 Kobe,2022,2022-04-01,0,0,"The 2022 edition of the adidas Crazy 1 ‘Sunshine’ brings back an OG colorway of the shoe formerly known as the Kobe 1. Worn by Kobe Bryant at the 2001 NBA All-Star Game, the sneaker features a minimalist shape inspired by the Audi TT Roadster. A golden yellow hue floods a smooth synthetic upper with a reinforced toe bumper and debossed three-stripe branding on the quarter panel. Lightweight cushioning arrives via a full-length EVA midsole, supported underfoot by a herringbone-traction rubber outsole with adidas’ Torsion plate for midfoot support.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/675/original/GY3808.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/675/original/GY3808.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/675/original/GY3808.png.png'}","{'stockX': 'https://stockx.com/adidas-crazy-1-sunshine-2022', 'goat': 'https://goat.com/sneakers/crazy-1-sunshine-2022-gy3808', 'flightClub': 'https://flightclub.com/crazy-1-sunshine-2022-gy3808', 'stadiumGoods': ''}" +e2d5cb05-0489-4557-a973-c57195df557f,DV3501-400,Nike,Nike Air Force 1 Low White Navy Grey,White/Navy-Grey,men,Nike Air Force 1 Low,2022,2022-04-01,100,173,,"{'360': [], 'original': 'https://images.stockx.com/images/Nike-Air-Force-1-Low-White-Navy-Grey.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648701240', 'small': 'https://images.stockx.com/images/Nike-Air-Force-1-Low-White-Navy-Grey.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648701240', 'thumbnail': 'https://images.stockx.com/images/Nike-Air-Force-1-Low-White-Navy-Grey.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648701240'}","{'stockX': 'https://stockx.com/nike-air-force-1-low-white-navy-grey', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +ea204139-7ab5-4fb8-bd3f-09d7896befb2,GX6300,adidas,adidas Ultra Boost 22 Zebra,Core Black / Core Black / Almost Lime,men,UltraBoost 22,2022,2022-04-01,190,250,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/731/original/GX6300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/731/original/GX6300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/731/original/GX6300.png.png'}","{'stockX': 'https://stockx.com/adidas-ultra-boost-22-zebra', 'goat': 'https://goat.com/sneakers/ultraboost-22-zebra-gx6300', 'flightClub': 'https://flightclub.com/ultraboost-22-zebra-gx6300', 'stadiumGoods': ''}" +f80ad596-1525-46d9-b1cc-9d1dce317f1e,GZ4059,adidas,EQ21 Run 'Royal Blue',Royal Blue/Legacy Indigo/Cloud White,men,EQ21 Run,2022,2022-04-01,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/093/original/GZ4059.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/093/original/GZ4059.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/093/original/GZ4059.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/eq21-run-royal-blue-gz4059', 'flightClub': 'https://flightclub.com/eq21-run-royal-blue-gz4059', 'stadiumGoods': ''}" +2a714181-567d-4baf-873f-61d10fe77c53,DA9054-001,Jordan,Jordan 36 nfrared 23 (GS),Black/Infrared 23/White,child,Air Jordan 36,2022,2022-03-31,125,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/594/original/DA9054_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/594/original/DA9054_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/594/original/DA9054_001.png.png'}","{'stockX': 'https://stockx.com/air-jordan-36-nfrared-23-gs', 'goat': 'https://goat.com/sneakers/air-jordan-36-gs-black-infrared-da9054-001', 'flightClub': 'https://flightclub.com/air-jordan-36-gs-black-infrared-da9054-001', 'stadiumGoods': ''}" +4eccb7a1-9dfa-4d6f-9d4a-23f12ae13b54,GY8440,Reebok,Weebok Clasp Low Toddler 'Gable Grey Blue Slate',Gable Grey/Blue Slate/Footwear White,infant,Weebok Clasp,2022,2022-03-31,40,40,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/weebok-clasp-low-toddler-gable-grey-blue-slate-gy8440', 'flightClub': 'https://flightclub.com/weebok-clasp-low-toddler-gable-grey-blue-slate-gy8440', 'stadiumGoods': ''}" +63fbf35f-e17a-4729-9b1e-7f0e2736a305,GW8108,adidas,Ozelia J 'White Ecru Tint',White Tint/Ecru Tint/Cloud White,youth,Ozelia,2022,2022-03-31,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/021/original/GW8108.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/021/original/GW8108.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/021/original/GW8108.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ozelia-j-white-ecru-tint-gw8108', 'flightClub': 'https://flightclub.com/ozelia-j-white-ecru-tint-gw8108', 'stadiumGoods': ''}" +6f50057e-f50d-4502-a66d-d82d888fa504,DV2117-700,Nike,Air Huarache 'Yin Yang',Lemon Drop/Sail/Light Marine/Off Noir,men,Air Huarache,2022,2022-03-31,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/123/020/original/DV2117_700.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/123/020/original/DV2117_700.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/123/020/original/DV2117_700.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-huarache-yin-yang-dv2117-700', 'flightClub': 'https://flightclub.com/air-huarache-yin-yang-dv2117-700', 'stadiumGoods': ''}" +7dfe9ebc-96e0-4e05-b914-99dabb436891,CZ2650-001,Jordan,Air Jordan 36 'Black Infrared',Black/Infrared 23,men,Air Jordan 36,2022,2022-03-31,185,170,"The Air Jordan 36 ‘Black Infrared’ brings an iconic color scheme to the lightweight performance hoops shoe. Reflective laces secure the black Leno-Weave upper, reinforced with a TPU ribbon and equipped with a synthetic nubuck collar. Infrared accents land on the heel tab, Jumpman branding, and Phylon midsole, enhanced with a full-length Zoom Air Strobel and a forefoot Zoom Air unit. Underfoot, the translucent rubber outsole features a multidirectional tread for stop-and-go traction on the hardwood.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/603/748/original/CZ2650_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/603/748/original/CZ2650_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/603/748/original/CZ2650_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-36-black-infrared-cz2650-001', 'flightClub': 'https://flightclub.com/air-jordan-36-black-infrared-cz2650-001', 'stadiumGoods': ''}" +8777ccdc-02c6-4725-b322-bc90b307e4e7,DJ9649-400,Nike,Union LA x Dunk Low 'Passport Pack - Argon',Hyper Royal/White/Psychic Blue,men,Dunk,2022,2022-03-31,150,330,"The Union LA x Nike Dunk Low ‘Argon’ is drawn from the three-piece ‘Passport Pack,’ which takes inspiration from the ‘90s, when the Union crew logged countless air miles as they hunted down exclusive sneakers and streetwear. The three styles pay homage to a trio of cities that the retailer called and presently calls home — New York, Los Angeles and Tokyo — while offering a modern spin on early 2000s colorways. This pair features unfinished red stitching and a tearaway ripstop upper that reveals a leather underlay in varying shades of blue. On the lateral side, a yellow ‘UN/LA’ tag accompanies a heel emblem marked with Union’s Frontman graphic. The logo reappears on the blue translucent rubber outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/066/733/592/original/860439_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/066/733/592/original/860439_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/066/733/592/original/860439_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/union-la-x-dunk-low-dj9649-400', 'flightClub': 'https://flightclub.com/union-la-x-dunk-low-dj9649-400', 'stadiumGoods': ''}" +93973bda-0d84-4484-a5c3-53cee69a3a58,DJ9649-500,Nike,Nike Dunk Low Union Passport Pack Court Purple,Grey/Purple/Yellow,men,Dunk,2022,2022-03-31,150,326,"The Union LA x Nike Dunk Low ‘Court Purple’ showcases a combination of colors inspired by Los Angeles’ storied NBA franchise. The upper is constructed from semi-translucent ripstop textile that reveals a purple underlay on the toe box, quarter panel and collar. The same gridded design is applied to the forefoot and heel overlay, rendered in a solid white finish with contrast yellow stitching. More yellow stitching is applied to the patterned Swoosh, complete with excess hanging threads for a DIY-inspired look. A yellow ‘UN/LA’ tag decorates the quarter panel, while a circular emblem on the lateral heel displays the retailer’s OG Frontman logo. The distinctive silhouette makes a repeat appearance under the translucent purple rubber outsole.","{'360': ['https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050', 'https://images.stockx.com/360/Nike-Dunk-Low-Union-Grey-Purple/Images/Nike-Dunk-Low-Union-Grey-Purple/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648741050'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/528/310/original/884782_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/528/310/original/884782_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/528/310/original/884782_00.png.png'}","{'stockX': 'https://stockx.com/nike-dunk-low-union-grey-purple', 'goat': 'https://goat.com/sneakers/union-la-x-dunk-low-lakers-dj9649-lakers', 'flightClub': 'https://flightclub.com/union-la-x-dunk-low-lakers-dj9649-lakers', 'stadiumGoods': ''}" +980dddb0-fc42-47e6-9e81-c0e3201da37c,GX6435,Reebok,Flintstones Meet Jetsons x Nano X1 'Bedrock',Fliny Grey/Regal Purple/Semi Neon Mint,men,Nano X1,2022,2022-03-31,140,140,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/flintstones-meet-jetsons-x-nano-x1-bedrock-gx6435', 'flightClub': 'https://flightclub.com/flintstones-meet-jetsons-x-nano-x1-bedrock-gx6435', 'stadiumGoods': ''}" +af2e46c4-6ae0-4d31-84cd-4064c0a413d5,DM6443-100,Nike,Nike Blazer Low Sacai White Patent Leather,White/Sail,men,Blazer,2022,2022-03-31,120,125,"The sacai x Nike Blazer Low ‘White Patent’ reimagines the vintage silhouette with designer Chitose Abe’s deconstructed aesthetic. The upper is crafted from glossy white patent leather with an exposed-foam collar and a pair of overlapping Swooshes, one in grey suede, the other in white matte leather. Eyestays and tongues are similarly doubled up, while multiple layers of textured rubber reinforce the toe, midfoot and heel. Dual Nike and sacai branding decorates the sockliner. Underfoot, a traditional herringbone-traction rubber outsole provides maximum grip.","{'360': ['https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-White-Grey/Images/Nike-Blazer-Low-Sacai-White-Grey/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647579280'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/528/114/original/913969_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/528/114/original/913969_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/528/114/original/913969_00.png.png'}","{'stockX': 'https://stockx.com/nike-blazer-low-sacai-white-grey', 'goat': 'https://goat.com/sneakers/sacai-x-blazer-low-white-sail-dm6443-100', 'flightClub': 'https://flightclub.com/sacai-x-blazer-low-white-sail-dm6443-100', 'stadiumGoods': ''}" +b00778d3-7526-49ca-b5e5-a347abb87197,640735-078,Jordan,Air Jordan 1 Mid TD 'Light Smoke Grey',Light Smoke Grey/Anthracite/White,infant,Air Jordan 1,2022,2022-03-31,55,69,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/550/original/640735_078.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/550/original/640735_078.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/550/original/640735_078.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-1-mid-td-light-smoke-grey-640735-078', 'flightClub': 'https://flightclub.com/air-jordan-1-mid-td-light-smoke-grey-640735-078', 'stadiumGoods': ''}" +b6578ad7-35ae-4dda-b888-5454909885ee,DM6443-001,Nike,Nike Blazer Low Sacai Black Patent Leather,Black/White,men,Blazer,2022,2022-03-31,120,104,,"{'360': ['https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646', 'https://images.stockx.com/360/Nike-Blazer-Low-Sacai-Black-Patent/Images/Nike-Blazer-Low-Sacai-Black-Patent/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647011646'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/277/694/original/914711_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/277/694/original/914711_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/277/694/original/914711_00.png.png'}","{'stockX': 'https://stockx.com/nike-blazer-low-sacai-black-patent', 'goat': 'https://goat.com/sneakers/sacai-x-blazer-low-black-patent-dm6443-001', 'flightClub': 'https://flightclub.com/sacai-x-blazer-low-black-patent-dm6443-001', 'stadiumGoods': ''}" +c2ebc5d4-8b55-4fda-869c-8d0f322559f0,372351-25,Puma,Future Rider Play On Jr 'White Fizzy Lime',White/Fizzy Lime/Royal,youth,Future Rider,2022,2022-03-31,55,55,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/future-rider-play-on-jr-white-fizzy-lime-372351-25', 'flightClub': 'https://flightclub.com/future-rider-play-on-jr-white-fizzy-lime-372351-25', 'stadiumGoods': ''}" +c5fffd93-60da-4569-a736-592904203cb4,GZ0878,Reebok,Weebok Clasp Low Toddler 'Modern Beige Gum',Modern Beige/Stucco/Footwear White,infant,Weebok Clasp,2022,2022-03-31,40,40,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/weebok-clasp-low-toddler-modern-beige-gum-gz0878', 'flightClub': 'https://flightclub.com/weebok-clasp-low-toddler-modern-beige-gum-gz0878', 'stadiumGoods': ''}" +f26703be-6b11-4509-a844-bf66e207e2da,GX2945,adidas,UltraBoost Climacool 2 DNA 'Orange Rush',Orange Rush/Cloud White/Flash Orange,men,UltraBoost,2022,2022-03-31,190,260,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/303/038/original/GX2945.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/303/038/original/GX2945.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/303/038/original/GX2945.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultraboost-climacool-2-dna-orange-rush-gx2945', 'flightClub': 'https://flightclub.com/ultraboost-climacool-2-dna-orange-rush-gx2945', 'stadiumGoods': ''}" +01ad0a7e-e238-4e14-a174-6ba171aa7a9c,H02033,adidas,Okosu 'White Black',Cloud White/Core Black/Grey One,men,Okosu,2022,2022-03-30,65,133,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/617/original/H02033.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/617/original/H02033.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/617/original/H02033.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/okosu-white-black-h02033', 'flightClub': 'https://flightclub.com/okosu-white-black-h02033', 'stadiumGoods': ''}" +36b7dd6f-1313-4640-ab98-706c392fa298,GZ3500,adidas,Swift Run 22 'Black Grey',Core Black/Core Black/Grey Five,men,Swift Run,2022,2022-03-30,90,139,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/613/original/GZ3500.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/613/original/GZ3500.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/613/original/GZ3500.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/swift-run-22-black-grey-gz3500', 'flightClub': 'https://flightclub.com/swift-run-22-black-grey-gz3500', 'stadiumGoods': ''}" +41b87b57-3346-4979-82b7-5d2b1145b787,387304-01,Puma,Wmns Suede Classic 21 'NYC',Pristine/Spring Moss/Team Gold,women,Suede,2022,2022-03-30,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/553/original/387304_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/553/original/387304_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/553/original/387304_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-suede-classic-21-nyc-387304-01', 'flightClub': 'https://flightclub.com/wmns-suede-classic-21-nyc-387304-01', 'stadiumGoods': ''}" +55be4acb-9852-4b63-9913-cbd9e51922a4,373906-09,Puma,Wmns Cali Wedge Mix 'White Nimbus Cloud',White/Nimbus Cloud/Blue Fog,women,Cali,2022,2022-03-30,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/513/original/373906_09.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/513/original/373906_09.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/513/original/373906_09.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-cali-wedge-mix-white-nimbus-cloud-373906-09', 'flightClub': 'https://flightclub.com/wmns-cali-wedge-mix-white-nimbus-cloud-373906-09', 'stadiumGoods': ''}" +5e5fd296-8481-4bd4-befe-7c36c20485ab,106737-03,Puma,Ultra 2.4 FG AG Jr 'Festival Fuchsia',Festival Fuchsia/Neon Citrus/Parisian Night,youth,Ultra 2.4,2022,2022-03-30,110,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/434/original/106737_03.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/434/original/106737_03.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/434/original/106737_03.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultra-2-4-fg-ag-jr-festival-fuchsia-106737-03', 'flightClub': 'https://flightclub.com/ultra-2-4-fg-ag-jr-festival-fuchsia-106737-03', 'stadiumGoods': ''}" +6b9d46ea-f027-478d-abd3-0d6c69f8a38e,383754-01,Puma,Wmns Clyde 'Flagship - NYC Winter',White/Silver,women,Clyde,2022,2022-03-30,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/540/original/383754_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/540/original/383754_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/540/original/383754_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-clyde-flagship-nyc-winter-383754-01', 'flightClub': 'https://flightclub.com/wmns-clyde-flagship-nyc-winter-383754-01', 'stadiumGoods': ''}" +b15758c1-3cb3-4902-b2c7-6f9e7e939ec2,DH3718-105,Nike,Nike Dunk High Up Rebel Lemon Yellow (W),White/Citron Tint/Coconut Milk/Photon Dust,women,Dunk,2022,2022-03-30,120,112,"The Nike women’s Dunk High Up ‘White Citron Tint’ gives the heritage silhouette a modern, revamped build. An elongated lacing system secures the white leather upper, featuring reinforced yellow leather overlays at the forefoot and heel. Branding elements include a standard Nike tongue tag and a light grey Swoosh, overlaid with an embroidered yellow mini-Swoosh. Underpinning the high-top is a double-stacked foam midsole that gives the shoe a lifted look. Underfoot, durable yellow rubber outlines the perimeter of the cored-out outsole.","{'360': ['https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592', 'https://images.stockx.com/360/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Images/Nike-Dunk-High-Up-Rebel-Lemon-Yellow-W/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647445592'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/066/359/673/original/DH3718_105.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/066/359/673/original/DH3718_105.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/066/359/673/original/DH3718_105.png.png'}","{'stockX': 'https://stockx.com/nike-dunk-high-up-rebel-lemon-yellow-w', 'goat': 'https://goat.com/sneakers/wmns-dunk-high-up-white-citron-tint-dh3718-105', 'flightClub': 'https://flightclub.com/wmns-dunk-high-up-white-citron-tint-dh3718-105', 'stadiumGoods': ''}" +cd55d1f0-083f-4a24-97ad-a569e3ad41fe,DQ5012-133,Nike,Nike Dunk High Up Setsubun (W),Sail/Harvest Moon/Hot Curry/Canyon Purple,women,Dunk,2022,2022-03-30,145,120,"The Nike women’s Dunk High Up ‘Setsubun’ gets its name from an annual Japanese festival that celebrates the first day of spring. The recrafted build is highlighted by an off-white cracked leather upper with orange shaggy suede overlays and a purple leather Swoosh. Unique details include added overlays, an embroidered mini-Swoosh, and a demon-mask graphic on the lateral heel. Custom sockliners feature colorful artwork that depicts the Seven Lucky Gods of Japanese mythology. The sneaker rides on an exaggerated foam sole unit, reinforced with gum rubber that rings the perimeter of the outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/656/845/original/DQ5012_133.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/656/845/original/DQ5012_133.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/656/845/original/DQ5012_133.png.png'}","{'stockX': 'https://stockx.com/nike-dunk-high-up-setsubun-w', 'goat': 'https://goat.com/sneakers/wmns-dunk-high-setsubun-dq5012-133', 'flightClub': 'https://flightclub.com/wmns-dunk-high-setsubun-dq5012-133', 'stadiumGoods': ''}" +e705d632-c2b0-402d-b2b0-90211ee20c67,DO6699-200,Jordan,Wmns Air Jordan 1 Mid SE 'Cream Dark Chocolate',Cream/Dark Chocolate/Oatmeal,women,Air Jordan 1,2022,2022-03-30,130,162,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/332/original/DO6699_200.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/332/original/DO6699_200.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/332/original/DO6699_200.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-air-jordan-1-mid-se-cream-dark-chocolate-do6699-200', 'flightClub': 'https://flightclub.com/wmns-air-jordan-1-mid-se-cream-dark-chocolate-do6699-200', 'stadiumGoods': ''}" +ea3fc775-7dba-4ea4-88b5-80ff0fd97506,CT8019-060,Jordan,Air Jordan 9 Retro 'Particle Grey',Black/University Red/Particle Grey/White,men,Air Jordan 9,2022,2022-03-30,190,750,"The Air Jordan 9 Retro ‘Particle Grey’ delivers a neutral colorway of the ‘90s model that originally released during MJ’s first retirement from basketball. The retro silhouette is updated with a breathable black textile upper, secured with speed laces and accented with tonal stitch detailing. A nubuck mudguard in a neutral grey finish wraps around the heel and extends up the mid-cut collar. Contrasting hits of crimson land on the sneaker’s branding elements, including an Air Jordan tongue tag and a molded Jumpman emblem at the heel. Lightweight cushioning is provided by a matte grey polyurethane midsole with encapsulated Air-sole units in the forefoot and heel.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/065/998/866/original/CT8019_060.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/065/998/866/original/CT8019_060.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/065/998/866/original/CT8019_060.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-9-retro-particle-grey-ct8019-060', 'flightClub': 'https://flightclub.com/air-jordan-9-retro-particle-grey-ct8019-060', 'stadiumGoods': ''}" +f0f6f865-1f0a-40f4-8873-ed6b6fe3a9f8,383954-03,Puma,Wmns Muse X5 Metal 'Dark Green Moss Rose Gold',Dark Green Moss/White/Rose Gold,women,Muse,2022,2022-03-30,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/541/original/383954_03.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/541/original/383954_03.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/541/original/383954_03.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-muse-x5-metal-dark-green-moss-rose-gold-383954-03', 'flightClub': 'https://flightclub.com/wmns-muse-x5-metal-dark-green-moss-rose-gold-383954-03', 'stadiumGoods': ''}" +f768fc32-63ea-4c6d-ac29-da31d1f48556,H02031,adidas,Okosu 'Crew Navy',Crew Navy/White Tint/Cloud White,men,Okosu,2022,2022-03-30,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/616/original/H02031.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/616/original/H02031.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/616/original/H02031.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/okosu-crew-navy-h02031', 'flightClub': 'https://flightclub.com/okosu-crew-navy-h02031', 'stadiumGoods': ''}" +0cb361dc-e0b6-4839-8ced-21a4d84ffcfb,GX8226,adidas,Wmns Advantage 'White Sandy Beige',Cloud White/Sandy Beige/Sandy Beige Metallic,women,Advantage,2022,2022-03-29,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/881/original/GX8226.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/881/original/GX8226.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/881/original/GX8226.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-advantage-white-sandy-beige-gx8226', 'flightClub': 'https://flightclub.com/wmns-advantage-white-sandy-beige-gx8226', 'stadiumGoods': ''}" +109abbf3-262f-42ea-858b-9eeed0e2583e,1204A003-002,ASICS,Gel Quantum 90 3 GS 'Black Pure Gold',Black/Pure Gold,youth,Gel Quantum 90,2022,2022-03-29,75,75,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/733/original/1204A003_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/733/original/1204A003_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/733/original/1204A003_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-90-3-gs-black-pure-gold-1204a003-002', 'flightClub': 'https://flightclub.com/gel-quantum-90-3-gs-black-pure-gold-1204a003-002', 'stadiumGoods': ''}" +19aee8c1-1983-4125-b629-ece53e729ff1,1014A192-410,ASICS,Contend 7 GS 'Lake Drive Barely Rose',Lake Drive/Barely Rose,youth,Gel Contend,2022,2022-03-29,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/654/original/1014A192_410.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/654/original/1014A192_410.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/654/original/1014A192_410.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-gs-lake-drive-barely-rose-1014a192-410', 'flightClub': 'https://flightclub.com/contend-7-gs-lake-drive-barely-rose-1014a192-410', 'stadiumGoods': ''}" +252ce2a0-9aca-4cbb-8598-d867c88d0b8a,383107-03,Puma,Mirage Sport Tech 'Black High Risk Red',Black/Quarry/High Risk Red,men,Mirage Sport,2022,2022-03-29,100,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/749/original/383107_03.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/749/original/383107_03.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/749/original/383107_03.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/mirage-sport-tech-black-high-risk-red-383107-03', 'flightClub': 'https://flightclub.com/mirage-sport-tech-black-high-risk-red-383107-03', 'stadiumGoods': ''}" +267398ca-8a1e-44a6-ad72-c9f6dceee1a7,1204A003-100,ASICS,Gel Quantum 90 3 GS 'White Pink Rave',White/Pink Rave,youth,Gel Quantum 90,2022,2022-03-29,75,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/736/original/1204A003_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/736/original/1204A003_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/736/original/1204A003_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-90-3-gs-white-pink-rave-1204a003-100', 'flightClub': 'https://flightclub.com/gel-quantum-90-3-gs-white-pink-rave-1204a003-100', 'stadiumGoods': ''}" +2ffdc67a-ef76-4e2b-8981-46695c2a7170,1014A193-007,ASICS,Contend 7 TS 'Black Digital Aqua',Black/Digital Aqua,infant,Gel Contend,2022,2022-03-29,40,40,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/657/original/1014A193_007.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/657/original/1014A193_007.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/657/original/1014A193_007.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-ts-black-digital-aqua-1014a193-007', 'flightClub': 'https://flightclub.com/contend-7-ts-black-digital-aqua-1014a193-007', 'stadiumGoods': ''}" +304974d6-5272-460f-9791-43ab760188b6,DM0013-100,Nike,Air Max Dawn 'White Blue Red',White/Photo Blue/Black/Red,men,Air Max Dawn,2022,2022-03-29,110,157,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/826/original/DM0013_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/826/original/DM0013_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/826/original/DM0013_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-dawn-white-blue-red-dm0013-100', 'flightClub': 'https://flightclub.com/air-max-dawn-white-blue-red-dm0013-100', 'stadiumGoods': ''}" +314a11ed-616d-4dcc-a6d4-669e861d0e9c,1014A202-404,ASICS,Contend 7 TS 'Shark',Grey Floss/White,infant,Gel Contend,2022,2022-03-29,45,45,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/668/original/1014A202_404.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/668/original/1014A202_404.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/668/original/1014A202_404.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-ts-shark-1014a202-404', 'flightClub': 'https://flightclub.com/contend-7-ts-shark-1014a202-404', 'stadiumGoods': ''}" +333c770a-b702-45fa-9f32-1353563126dc,GX0257,Reebok,Floatride Energy Daily 'Army Green',Army Green/Core Black/Ftwr White,men,Floatride,2022,2022-03-29,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/872/original/GX0257.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/872/original/GX0257.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/872/original/GX0257.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/floatride-energy-daily-army-green-gx0257', 'flightClub': 'https://flightclub.com/floatride-energy-daily-army-green-gx0257', 'stadiumGoods': ''}" +3964e188-847e-4db6-99e5-6113362d00d9,864349-602,Nike,Zoom Blazer Mid SB 'University Red',University Red/University Red/White/White,men,Blazer,2022,2022-03-29,85,165,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/776/original/864349_602.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/776/original/864349_602.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/776/original/864349_602.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zoom-blazer-mid-sb-university-red-864349-602', 'flightClub': 'https://flightclub.com/zoom-blazer-mid-sb-university-red-864349-602', 'stadiumGoods': ''}" +39d500e2-13e0-4fdc-a475-7be40d3d9a21,553558-607,Jordan,Jordan 1 Low Cardinal Red,Noble Red/White-Noble Red-University Gold,men,Air Jordan 1,2022,2022-03-29,0,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/765/original/553558_607.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/765/original/553558_607.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/765/original/553558_607.png.png'}","{'stockX': 'https://stockx.com/air-jordan-1-low-cardinal-red', 'goat': 'https://goat.com/sneakers/air-jordan-1-low-cardinal-red-553558-607', 'flightClub': 'https://flightclub.com/air-jordan-1-low-cardinal-red-553558-607', 'stadiumGoods': ''}" +3aa12b4a-1329-411f-af85-009bca4adac8,1014A049-401,ASICS,Contend 5 GS 'Illusion Blue Lemon',Illusion Blue/Lemon,youth,Gel Contend,2022,2022-03-29,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/627/original/1014A049_401.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/627/original/1014A049_401.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/627/original/1014A049_401.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-5-gs-illusion-blue-lemon-1014a049-401', 'flightClub': 'https://flightclub.com/contend-5-gs-illusion-blue-lemon-1014a049-401', 'stadiumGoods': ''}" +3da45354-c9ea-47b4-94e3-18fef5aa98bd,DQ1866-100,Jordan,Jordan 1 Mid Schematic (PS),White/Black,preschool,Air Jordan 1,2022,2022-03-29,65,86,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/050/original/DQ1866_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/050/original/DQ1866_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/050/original/DQ1866_100.png.png'}","{'stockX': 'https://stockx.com/air-jordan-1-mid-schematic-ps', 'goat': 'https://goat.com/sneakers/air-jordan-1-mid-ps-schematic-dq1866-100', 'flightClub': 'https://flightclub.com/air-jordan-1-mid-ps-schematic-dq1866-100', 'stadiumGoods': ''}" +3f574856-df14-4103-a81b-132cab86c613,1014A049-002,ASICS,Contend 5 GS 'Black',Black/Silver,youth,Gel Contend,2022,2022-03-29,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/622/original/1014A049_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/622/original/1014A049_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/622/original/1014A049_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-5-gs-black-1014a049-002', 'flightClub': 'https://flightclub.com/contend-5-gs-black-1014a049-002', 'stadiumGoods': ''}" +40345c22-603d-4d18-8618-7abdf1e65430,1014A049-402,ASICS,Contend 5 GS 'Blue Coast Hot Pink',Blue Coast/Hot Pink,youth,Gel Contend,2022,2022-03-29,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/628/original/1014A049_402.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/628/original/1014A049_402.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/628/original/1014A049_402.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-5-gs-blue-coast-hot-pink-1014a049-402', 'flightClub': 'https://flightclub.com/contend-5-gs-blue-coast-hot-pink-1014a049-402', 'stadiumGoods': ''}" +4829780a-7903-44e3-9d75-eef0ca0bb49c,386769-01,Puma,Minecraft x CA Pro Jr 'Grass Block',White/Star Sapphire/Amazon Green,youth,CA Pro,2022,2022-03-29,75,75,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/067/714/565/original/386769_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/067/714/565/original/386769_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/067/714/565/original/386769_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/minecraft-x-ca-pro-jr-grass-block-386769-01', 'flightClub': 'https://flightclub.com/minecraft-x-ca-pro-jr-grass-block-386769-01', 'stadiumGoods': ''}" +485c2605-5533-4d41-ab9d-610f809228d3,362795-21,Puma,Roma Basic Summer Little Kid 'Black Gum',Black/White,youth,Roma,2022,2022-03-29,45,45,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/roma-basic-summer-little-kid-black-gum-362795-21', 'flightClub': 'https://flightclub.com/roma-basic-summer-little-kid-black-gum-362795-21', 'stadiumGoods': ''}" +4b1b0c8c-bdb8-4827-ac39-b09260b416f2,385381-01,Puma,RS-X Big Kid 'Global Futurism',Black/Spellbound/Saffron/Bluemazing,youth,RS-X,2022,2022-03-29,85,85,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/546/original/385381_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/546/original/385381_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/546/original/385381_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rs-x-big-kid-global-futurism-385381-01', 'flightClub': 'https://flightclub.com/rs-x-big-kid-global-futurism-385381-01', 'stadiumGoods': ''}" +4e318007-937a-44a5-b63b-4749a458c203,DJ6608-001,Nike,Wmns Vista NA Sandal 'Black White',Black/Black/White,women,Vista Sandal,2022,2022-03-29,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/824/original/DJ6608_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/824/original/DJ6608_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/824/original/DJ6608_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-vista-na-sandal-black-white-dj6608-001', 'flightClub': 'https://flightclub.com/wmns-vista-na-sandal-black-white-dj6608-001', 'stadiumGoods': ''}" +4f18bdd5-35e3-46a7-9332-6b86299bc643,DD8476-002,Nike,Revolution 6 FlyEase Next Nature Extra Wide 'Pure Platinum Dark Marina Blue',Pure Platinum/Dark Marina Blue/Worn Blue/Thunder Blue,men,Revolution 6,2022,2022-03-29,65,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/814/original/DD8476_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/814/original/DD8476_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/814/original/DD8476_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/revolution-6-flyease-next-nature-extra-wide-pure-platinum-dark-marina-blue-dd8476-002', 'flightClub': 'https://flightclub.com/revolution-6-flyease-next-nature-extra-wide-pure-platinum-dark-marina-blue-dd8476-002', 'stadiumGoods': ''}" +4f63bcc0-4afd-433e-879e-27fc82ff9af6,1014A203-411,ASICS,Jolt 3 GS 'Lake Drive',Lake Drive/Mako Blue,youth,Jolt,2022,2022-03-29,45,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/676/original/1014A203_411.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/676/original/1014A203_411.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/676/original/1014A203_411.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jolt-3-gs-lake-drive-1014a203-411', 'flightClub': 'https://flightclub.com/jolt-3-gs-lake-drive-1014a203-411', 'stadiumGoods': ''}" +56884e02-3784-46eb-a002-cfd0f05aa768,GV7506,adidas,Wmns Terrex AX4 Primegreen 'Magic Grey Acid Red',Magic Grey/Dash Grey/Acid Red,women,Terrex AX4,2022,2022-03-29,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/858/original/GV7506.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/858/original/GV7506.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/858/original/GV7506.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-terrex-ax4-primegreen-magic-grey-acid-red-gv7506', 'flightClub': 'https://flightclub.com/wmns-terrex-ax4-primegreen-magic-grey-acid-red-gv7506', 'stadiumGoods': ''}" +570a2d18-11fd-400f-9aae-a00b39ff6e50,1014A192-005,ASICS,Contend 7 GS 'Black Hazard Green',Black/Hazard Green,youth,Gel Contend,2022,2022-03-29,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/642/original/1014A192_005.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/642/original/1014A192_005.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/642/original/1014A192_005.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-gs-black-hazard-green-1014a192-005', 'flightClub': 'https://flightclub.com/contend-7-gs-black-hazard-green-1014a192-005', 'stadiumGoods': ''}" +5b407f09-d633-469c-b2e6-84341f0781e4,1014A049-501,ASICS,Contend 5 GS 'Astral Orchid',Astral/Orchid,youth,Gel Contend,2022,2022-03-29,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/631/original/1014A049_501.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/631/original/1014A049_501.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/631/original/1014A049_501.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-5-gs-astral-orchid-1014a049-501', 'flightClub': 'https://flightclub.com/contend-5-gs-astral-orchid-1014a049-501', 'stadiumGoods': ''}" +5c84b3f1-0adb-457c-8660-6888f3562492,DH0249-400,Jordan,Jordan Zoom Separate 'Mavs',Midnight Navy/Racer Blue/White/Electric Green,men,Jordan Zoom Separate,2022,2022-03-29,110,185,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/818/original/DH0249_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/818/original/DH0249_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/818/original/DH0249_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jordan-zoom-separate-mavs-dh0249-400', 'flightClub': 'https://flightclub.com/jordan-zoom-separate-mavs-dh0249-400', 'stadiumGoods': ''}" +6bdcacb7-034f-4815-b9f8-cd865e3bdab9,DH4026-300,Nike,ISPA Flow 2020 SE 'Dutch Green',Dutch Green/Vintage Green/Olive Aura/Black,men,ISPA Flow,2022,2022-03-29,0,207,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/204/409/original/DH4026_300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/204/409/original/DH4026_300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/204/409/original/DH4026_300.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ispa-flow-2020-se-dutch-green-dh4026-300', 'flightClub': 'https://flightclub.com/ispa-flow-2020-se-dutch-green-dh4026-300', 'stadiumGoods': ''}" +718afc77-e817-4705-8cf1-9de907302bcf,864349-009,Nike,Zoom Blazer Mid SB 'Black University Gold',Black/Black/White/University Gold,men,Blazer,2022,2022-03-29,85,165,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/774/original/864349_009.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/774/original/864349_009.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/774/original/864349_009.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zoom-blazer-mid-sb-black-university-gold-864349-009', 'flightClub': 'https://flightclub.com/zoom-blazer-mid-sb-black-university-gold-864349-009', 'stadiumGoods': ''}" +741cb6e9-085d-4798-a9d7-e80e0b7ca948,1014A049-601,ASICS,Contend 5 GS 'Classic Red',Classic Red/Silver,youth,Gel Contend,2022,2022-03-29,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/633/original/1014A049_601.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/633/original/1014A049_601.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/633/original/1014A049_601.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-5-gs-classic-red-1014a049-601', 'flightClub': 'https://flightclub.com/contend-5-gs-classic-red-1014a049-601', 'stadiumGoods': ''}" +7bdfe2bb-d854-4d47-b9a4-73cddbe455c8,GZ3009,adidas,Terrex AX4 Primegreen 'Blue Rush Black',Blue Rush/Core Black/Turbo,men,Terrex AX4,2022,2022-03-29,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/900/original/GZ3009.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/900/original/GZ3009.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/900/original/GZ3009.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/terrex-ax4-primegreen-blue-rush-black-gz3009', 'flightClub': 'https://flightclub.com/terrex-ax4-primegreen-blue-rush-black-gz3009', 'stadiumGoods': ''}" +7ca0de8f-67cf-4940-bccf-7cebb6e3389b,CW7456-402,Nike,Adversary Premium SB 'Navy Safety Orange',Navy/Navy/White/Safety Orange,men,Adversary,2022,2022-03-29,80,118,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/801/original/CW7456_402.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/801/original/CW7456_402.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/801/original/CW7456_402.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/adversary-premium-sb-navy-safety-orange-cw7456-402', 'flightClub': 'https://flightclub.com/adversary-premium-sb-navy-safety-orange-cw7456-402', 'stadiumGoods': ''}" +7d62c911-801b-4bc9-a5ce-ccfdb7729dd4,DH0654-500,Nike,Wmns Air Zoom Terra Kiger 8 'Light Marine',Light Marine/Hyper Royal/Black/White,women,Air Zoom Terra Kiger,2022,2022-03-29,140,737,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/819/original/DH0654_500.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/819/original/DH0654_500.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/819/original/DH0654_500.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-air-zoom-terra-kiger-8-light-marine-dh0654-500', 'flightClub': 'https://flightclub.com/wmns-air-zoom-terra-kiger-8-light-marine-dh0654-500', 'stadiumGoods': ''}" +866c46ed-9f28-41a3-aeb8-68ee535a1b1d,CZ4100-003,Nike,Kyrie Flytrap 5 'Bred',Black/Cool Grey/Wolf Grey/University Red,men,Kyrie Flytrap 5,2022,2022-03-29,90,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/803/original/CZ4100_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/803/original/CZ4100_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/803/original/CZ4100_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/kyrie-flytrap-5-bred-cz4100-003', 'flightClub': 'https://flightclub.com/kyrie-flytrap-5-bred-cz4100-003', 'stadiumGoods': ''}" +87f5eff6-a2c5-4cbc-97b1-acfaf6050c7a,1014A049-021,ASICS,Contend 5 GS 'Mid Grey New Leaf',Mid Grey/New Leaf,youth,Gel Contend,2022,2022-03-29,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/623/original/1014A049_021.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/623/original/1014A049_021.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/623/original/1014A049_021.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-5-gs-mid-grey-new-leaf-1014a049-021', 'flightClub': 'https://flightclub.com/contend-5-gs-mid-grey-new-leaf-1014a049-021', 'stadiumGoods': ''}" +88db7a15-0845-4f0a-a1f7-867ba23aba9b,GZ1717,adidas,Wmns Edge Lux 'Black Iron Metallic',Core Black/Core Black/Iron Metallic,women,Edge Lux,2022,2022-03-29,85,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/899/original/GZ1717.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/899/original/GZ1717.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/899/original/GZ1717.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-edge-lux-black-iron-metallic-gz1717', 'flightClub': 'https://flightclub.com/wmns-edge-lux-black-iron-metallic-gz1717', 'stadiumGoods': ''}" +8bdf507e-53bc-476f-b403-43544045f792,CZ1856-302,Nike,Wildhorse 7 'Cargo Khaki Siren Red',Cargo Khaki/Matte Olive/Obsidian/Siren Red,men,Wildhorse 7,2022,2022-03-29,130,169,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/802/original/CZ1856_302.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/802/original/CZ1856_302.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/802/original/CZ1856_302.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wildhorse-7-cargo-khaki-siren-red-cz1856-302', 'flightClub': 'https://flightclub.com/wildhorse-7-cargo-khaki-siren-red-cz1856-302', 'stadiumGoods': ''}" +8caa47a3-0732-4ac9-aa20-e161803c937c,1014A193-008,ASICS,Contend 7 TS 'Black Electric Red',Black Electric Red,infant,Gel Contend,2022,2022-03-29,40,40,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/658/original/1014A193_008.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/658/original/1014A193_008.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/658/original/1014A193_008.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-ts-black-electric-red-1014a193-008', 'flightClub': 'https://flightclub.com/contend-7-ts-black-electric-red-1014a193-008', 'stadiumGoods': ''}" +8df356f4-8778-4914-ab56-0cc4255b39c7,1014A203-702,ASICS,Jolt 3 GS 'Pink Glow Sour Yuzu',Pink Glow/Sour Yuzu,youth,Jolt,2022,2022-03-29,45,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/677/original/1014A203_702.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/677/original/1014A203_702.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/677/original/1014A203_702.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jolt-3-gs-pink-glow-sour-yuzu-1014a203-702', 'flightClub': 'https://flightclub.com/jolt-3-gs-pink-glow-sour-yuzu-1014a203-702', 'stadiumGoods': ''}" +9a0d05ff-0243-46f0-8067-d4cfe9e8bd2e,1204A056-001,ASICS,Lyte Classic PS 'Black Multi',Black/Multi,youth,Lyte Classic,2022,2022-03-29,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/740/original/1204A056_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/740/original/1204A056_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/740/original/1204A056_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lyte-classic-ps-black-multi-1204a056-001', 'flightClub': 'https://flightclub.com/lyte-classic-ps-black-multi-1204a056-001', 'stadiumGoods': ''}" +9beb9549-e632-4613-a585-984b46bd0e60,1014A192-413,ASICS,Contend 7 GS 'Lake Drive Pure Silver',Lake Drive/Pure Silver,youth,Gel Contend,2022,2022-03-29,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/655/original/1014A192_413.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/655/original/1014A192_413.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/655/original/1014A192_413.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-gs-lake-drive-pure-silver-1014a192-413', 'flightClub': 'https://flightclub.com/contend-7-gs-lake-drive-pure-silver-1014a192-413', 'stadiumGoods': ''}" +9e3021ef-bd4f-48ae-916a-7bc7f3b01b49,1014A049-701,ASICS,Contend 5 GS 'Pink Cameo',Pink Cameo/White,youth,Gel Contend,2022,2022-03-29,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/634/original/1014A049_701.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/634/original/1014A049_701.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/634/original/1014A049_701.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-5-gs-pink-cameo-1014a049-701', 'flightClub': 'https://flightclub.com/contend-5-gs-pink-cameo-1014a049-701', 'stadiumGoods': ''}" +a6658bcf-262e-4891-a402-cdcfea0a2637,1014A202-403,ASICS,Contend 7 TS 'Bunny',Soft Sky/White,infant,Gel Contend,2022,2022-03-29,45,45,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/666/original/1014A202_403.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/666/original/1014A202_403.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/666/original/1014A202_403.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-ts-bunny-1014a202-403', 'flightClub': 'https://flightclub.com/contend-7-ts-bunny-1014a202-403', 'stadiumGoods': ''}" +aa2179f9-ce99-4df0-8d20-dfb549a7e01b,GX8767,Reebok,Classic Leather Legacy AZ 'Grey Classic Burgundy',Footwear White/Pure Grey 2/Classic Burgundy,men,Reebok Classic Legacy,2022,2022-03-29,85,114,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/889/original/GX8767.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/889/original/GX8767.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/889/original/GX8767.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-leather-legacy-az-grey-classic-burgundy-gx8767', 'flightClub': 'https://flightclub.com/classic-leather-legacy-az-grey-classic-burgundy-gx8767', 'stadiumGoods': ''}" +abad52e1-80fa-4f6b-9364-8fe5c65c69a5,1014A202-405,ASICS,Contend 7 TS 'Unicorn',Lilac Opal/White,infant,Gel Contend,2022,2022-03-29,45,45,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/670/original/1014A202_405.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/670/original/1014A202_405.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/670/original/1014A202_405.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-ts-unicorn-1014a202-405', 'flightClub': 'https://flightclub.com/contend-7-ts-unicorn-1014a202-405', 'stadiumGoods': ''}" +b1563c55-fec0-48c0-876a-8c6772debd4a,GW5572,adidas,Advantage 'White Shadow Navy',Cloud White/Shadow Navy/Cloud White,men,Advantage,2022,2022-03-29,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/868/original/GW5572.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/868/original/GW5572.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/868/original/GW5572.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/advantage-white-shadow-navy-gw5572', 'flightClub': 'https://flightclub.com/advantage-white-shadow-navy-gw5572', 'stadiumGoods': ''}" +b76c35df-824d-4f73-9e39-b86208f93e30,DQ4993-010,Nike,Zoom Fly 4 'Black Multi',Black/Green Strike/Total Orange/Volt,men,Zoom Fly 4,2022,2022-03-29,170,128,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/835/original/DQ4993_010.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/835/original/DQ4993_010.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/835/original/DQ4993_010.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zoom-fly-4-black-multi-dq4993-010', 'flightClub': 'https://flightclub.com/zoom-fly-4-black-multi-dq4993-010', 'stadiumGoods': ''}" +b799592e-7b9d-4377-995a-94d1955b6c9f,DH7561-104,Nike,Nike Air Force 1 Low Medium Blue,White/Medium Blue,men,Air Force 1,2022,2022-03-29,100,114,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/823/original/DH7561_104.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/823/original/DH7561_104.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/823/original/DH7561_104.png.png'}","{'stockX': 'https://stockx.com/nike-air-force-1-low-medium-blue', 'goat': 'https://goat.com/sneakers/air-force-1-07-white-medium-blue-dh7561-104', 'flightClub': 'https://flightclub.com/air-force-1-07-white-medium-blue-dh7561-104', 'stadiumGoods': ''}" +b902c6e8-feac-4e61-8f8f-218a3c5f155a,DQ4502-171,Nike,Nike Air Force 1 Low Year of the Tiger (GS),Sail/White/University Gold/University Gold,child,Air Force 1,2022,2022-03-29,95,94,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/051/original/DQ4502_171.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/051/original/DQ4502_171.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/051/original/DQ4502_171.png.png'}","{'stockX': 'https://stockx.com/nike-air-force-1-low-year-of-the-tiger-gs', 'goat': 'https://goat.com/sneakers/air-force-1-07-lv8-gs-year-of-the-tiger-dq4502-171', 'flightClub': 'https://flightclub.com/air-force-1-07-lv8-gs-year-of-the-tiger-dq4502-171', 'stadiumGoods': ''}" +b9030c98-5a39-49b8-882b-8f9524b29cdf,307059-01,Puma,BMW Motorsport x RS-Z 'Black Strong Blue',Black/Strong Blue/Fiery Red,men,RS-Z,2022,2022-03-29,110,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/122/626/original/307059_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/122/626/original/307059_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/122/626/original/307059_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/bmw-motorsport-x-rs-z-black-strong-blue-307059-01', 'flightClub': 'https://flightclub.com/bmw-motorsport-x-rs-z-black-strong-blue-307059-01', 'stadiumGoods': ''}" +c19bf36f-e083-45fe-b95e-59e6779fd2a1,1014A198-007,ASICS,Jolt 3 PS 'Triple Black',Black/Black,youth,Jolt,2022,2022-03-29,40,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/664/original/1014A198_007.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/664/original/1014A198_007.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/664/original/1014A198_007.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jolt-3-ps-triple-black-1014a198-007', 'flightClub': 'https://flightclub.com/jolt-3-ps-triple-black-1014a198-007', 'stadiumGoods': ''}" +cd19383a-e724-4a92-8d18-ad9caffc8d9c,1014A192-006,ASICS,Contend 7 GS 'Black Hot Pink',Black/Hot Pink,youth,Gel Contend,2022,2022-03-29,55,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/643/original/1014A192_006.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/643/original/1014A192_006.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/643/original/1014A192_006.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-gs-black-hot-pink-1014a192-006', 'flightClub': 'https://flightclub.com/contend-7-gs-black-hot-pink-1014a192-006', 'stadiumGoods': ''}" +d24065b5-85fa-4c50-b2a4-97e7ef762a52,1014A049-024,ASICS,Contend 5 GS 'Piedmont Grey Sun Coral',Piedmont Grey/Sun Coral,youth,Gel Contend,2022,2022-03-29,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/626/original/1014A049_024.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/626/original/1014A049_024.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/626/original/1014A049_024.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-5-gs-piedmont-grey-sun-coral-1014a049-024', 'flightClub': 'https://flightclub.com/contend-5-gs-piedmont-grey-sun-coral-1014a049-024', 'stadiumGoods': ''}" +d6736c59-6c6e-46d3-979d-ec7173a323df,1014A198-101,ASICS,Jolt 3 PS 'Triple White',White/White,youth,Jolt,2022,2022-03-29,40,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/665/original/1014A198_101.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/665/original/1014A198_101.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/665/original/1014A198_101.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jolt-3-ps-triple-white-1014a198-101', 'flightClub': 'https://flightclub.com/jolt-3-ps-triple-white-1014a198-101', 'stadiumGoods': ''}" +d7b82adb-cbe9-4abc-bc15-f15e1c55d30f,1044A018-404,ASICS,Gel Resolution 8 GS 'Blue Harmony White',Blue Harmony/White,youth,Gel Resolution,2022,2022-03-29,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/692/original/1044A018_404.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/692/original/1044A018_404.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/692/original/1044A018_404.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-resolution-8-gs-blue-harmony-white-1044a018-404', 'flightClub': 'https://flightclub.com/gel-resolution-8-gs-blue-harmony-white-1044a018-404', 'stadiumGoods': ''}" +da724b85-10d5-4026-9e28-1fc849a59497,DA8697-400,Nike,Pegasus Trail 3 'Laser Blue Habanero Red',Laser Blue/Mint Foam/Black/Habanero Red,men,Pegasus Trail 3,2022,2022-03-29,130,210,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/810/original/DA8697_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/810/original/DA8697_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/810/original/DA8697_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/pegasus-trail-3-laser-blue-habanero-red-da8697-400', 'flightClub': 'https://flightclub.com/pegasus-trail-3-laser-blue-habanero-red-da8697-400', 'stadiumGoods': ''}" +dc5e3f43-e607-4b74-b270-9e56635c2edb,1014A049-503,ASICS,Contend 5 GS 'Ash Rock Silver',Ash Rock/Silver,youth,Gel Contend,2022,2022-03-29,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/632/original/1014A049_503.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/632/original/1014A049_503.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/632/original/1014A049_503.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-5-gs-ash-rock-silver-1014a049-503', 'flightClub': 'https://flightclub.com/contend-5-gs-ash-rock-silver-1014a049-503', 'stadiumGoods': ''}" +e33320b3-6528-4c06-8620-42de78314f8f,GY8433,Reebok,Wmns Legacy Lifter 2 'Quartz Glow Atomic Pink',Quartz Glow/Atomic Pink/Core Black,women,Legacy Lifter,2022,2022-03-29,200,270,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/607/original/GY8433.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/607/original/GY8433.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/607/original/GY8433.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-legacy-lifter-2-quartz-glow-atomic-pink-gy8433', 'flightClub': 'https://flightclub.com/wmns-legacy-lifter-2-quartz-glow-atomic-pink-gy8433', 'stadiumGoods': ''}" +e51dcbb8-7f94-4a2f-8655-5cdcfbcf5b31,DH5135-001,Nike,Air Max 2021 SE '35 Diamond',Wolf Grey/Black/White/Clear Jade,men,Air Max 2021,2022,2022-03-29,170,239,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/822/original/DH5135_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/822/original/DH5135_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/822/original/DH5135_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-2021-se-35-diamond-dh5135-001', 'flightClub': 'https://flightclub.com/air-max-2021-se-35-diamond-dh5135-001', 'stadiumGoods': ''}" +e53ccb73-273a-4de0-a561-b418d875b857,GZ3679,adidas,UltraBoost Web DNA 'White Orbit Green',Core White/Carbon/Orbit Green,men,UltraBoost,2022,2022-03-29,190,260,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/901/original/GZ3679.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/901/original/GZ3679.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/901/original/GZ3679.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultraboost-web-dna-white-orbit-green-gz3679', 'flightClub': 'https://flightclub.com/ultraboost-web-dna-white-orbit-green-gz3679', 'stadiumGoods': ''}" +e6cb4d31-63ce-46cc-ba28-dc6f12b394d7,GY0419,Reebok,Classic Leather Legacy AZ 'Court Blue Dynamic Red',Court Blue/Dynamic Red/Core Black,men,Reebok Classic Legacy,2022,2022-03-29,85,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/893/original/GY0419.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/893/original/GY0419.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/893/original/GY0419.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-leather-legacy-az-court-blue-dynamic-red-gy0419', 'flightClub': 'https://flightclub.com/classic-leather-legacy-az-court-blue-dynamic-red-gy0419', 'stadiumGoods': ''}" +e71eb324-303e-4fd3-8340-30a4ac8969c4,DR0147-171,Nike,Nike Air Force 1 Low Year of the Tiger,Sail/University Gold-White-Aurora Green-Rush Orange,men,Air Force 1,2022,2022-03-29,100,122,"The Nike Air Force 1 ‘07 LV8 ‘Year of the Tiger’ celebrates Chinese New Year with a refreshed build and vibrant accents. The upper is composed of breathable off-white canvas with a yellow textile Swoosh covered in black tiger stripes. An embroidered tiger graphic adorns the lateral heel, while the woven tongue tag features a Nike Swoosh integrated into the Chinese character for ‘king’ — a nod to the tiger’s status as the king of all beasts. The sneaker sits atop a solid white rubber midsole, enhanced with encapsulated Air-sole cushioning and reinforced by an orange rubber outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/334/532/original/906376_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/334/532/original/906376_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/334/532/original/906376_00.png.png'}","{'stockX': 'https://stockx.com/nike-air-force-1-low-year-of-the-tiger', 'goat': 'https://goat.com/sneakers/air-force-1-07-lv8-year-of-the-tiger-dr0147-171', 'flightClub': 'https://flightclub.com/air-force-1-07-lv8-year-of-the-tiger-dr0147-171', 'stadiumGoods': ''}" +e93839de-3103-45f6-a9ec-1940633123df,1044A018-406,ASICS,Gel Resolution 8 GS 'Light Indigo Clear Blue',Light Indigo/Clear Blue,youth,Gel Resolution,2022,2022-03-29,75,75,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/695/original/1044A018_406.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/695/original/1044A018_406.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/695/original/1044A018_406.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-resolution-8-gs-light-indigo-clear-blue-1044a018-406', 'flightClub': 'https://flightclub.com/gel-resolution-8-gs-light-indigo-clear-blue-1044a018-406', 'stadiumGoods': ''}" +edec98a4-081c-4980-a4e9-be47b9b56e71,1204A020-100,ASICS,Japan S GS 'White Black',White/Black,youth,Japan,2022,2022-03-29,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/739/original/1204A020_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/739/original/1204A020_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/739/original/1204A020_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/japan-s-gs-white-black-1204a020-100', 'flightClub': 'https://flightclub.com/japan-s-gs-white-black-1204a020-100', 'stadiumGoods': ''}" +f3b5f00b-3f37-4d9f-af6d-de998d3fab49,AT5889-606,Nike,Premier 3 FG 'University Red Black',University Red/University Red/Black,men,Premier 3,2022,2022-03-29,110,190,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/784/original/AT5889_606.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/784/original/AT5889_606.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/784/original/AT5889_606.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/premier-3-fg-university-red-black-at5889-606', 'flightClub': 'https://flightclub.com/premier-3-fg-university-red-black-at5889-606', 'stadiumGoods': ''}" +f3f8632c-c42a-4390-87df-7d49551d26fd,1014A192-403,ASICS,Contend 7 GS 'Reborn Blue',Reborn Blue/White,youth,Gel Contend,2022,2022-03-29,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/652/original/1014A192_403.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/652/original/1014A192_403.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/652/original/1014A192_403.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-gs-reborn-blue-1014a192-403', 'flightClub': 'https://flightclub.com/contend-7-gs-reborn-blue-1014a192-403', 'stadiumGoods': ''}" +f43f7766-9be3-448d-acd6-db9d5d609ec5,GW5381,Reebok,Reebok Zig Kinetica Victoria Beckham Solar Yellow,Solar Yellow,women,Zig Kinetica,2022,2022-03-29,220,219,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/866/original/GW5381.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/866/original/GW5381.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/866/original/GW5381.png.png'}","{'stockX': 'https://stockx.com/reebok-zig-kinetica-victoria-beckham-solar-yellow', 'goat': 'https://goat.com/sneakers/victoria-beckham-x-zig-kinetica-solar-yellow-gw5381', 'flightClub': 'https://flightclub.com/victoria-beckham-x-zig-kinetica-solar-yellow-gw5381', 'stadiumGoods': ''}" +fa4e833e-6175-4493-8a12-7328fe181e2c,1044A018-105,ASICS,Gel Resolution 8 GS 'White Green Gecko',White/Green Gecko,youth,Gel Resolution,2022,2022-03-29,75,75,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/690/original/1044A018_105.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/690/original/1044A018_105.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/690/original/1044A018_105.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-resolution-8-gs-white-green-gecko-1044a018-105', 'flightClub': 'https://flightclub.com/gel-resolution-8-gs-white-green-gecko-1044a018-105', 'stadiumGoods': ''}" +fb2d2ced-3114-4ddb-b9e9-423e6220de17,1014A203-012,ASICS,Jolt 3 GS 'Black Barely Rose',Black/Barely Rose,youth,Jolt,2022,2022-03-29,45,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/671/original/1014A203_012.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/671/original/1014A203_012.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/671/original/1014A203_012.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jolt-3-gs-black-barely-rose-1014a203-012', 'flightClub': 'https://flightclub.com/jolt-3-gs-black-barely-rose-1014a203-012', 'stadiumGoods': ''}" +fc38bbdb-55ee-4ecc-9cb3-919aa200a030,864349-303,Nike,Zoom Blazer Mid SB 'Barely Green Navy',Barely Green/Barely Green/White/Navy,men,Blazer,2022,2022-03-29,85,165,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/775/original/864349_303.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/775/original/864349_303.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/775/original/864349_303.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zoom-blazer-mid-sb-barely-green-navy-864349-303', 'flightClub': 'https://flightclub.com/zoom-blazer-mid-sb-barely-green-navy-864349-303', 'stadiumGoods': ''}" +fe210605-4277-486e-ad62-407df6cd350e,DR0148-171,Nike,Wmns Air Force 1 '07 LX 'Year of the Tiger',Sail White/White/University Gold/University Gold,women,Air Force 1,2022,2022-03-29,0,123,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/603/819/original/DR0148_171.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/603/819/original/DR0148_171.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/603/819/original/DR0148_171.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-air-force-1-07-lx-year-of-the-tiger-dr0148-171', 'flightClub': 'https://flightclub.com/wmns-air-force-1-07-lx-year-of-the-tiger-dr0148-171', 'stadiumGoods': ''}" +01e55736-e7a3-4afa-8a30-4d8de87cf269,1014A230-001,ASICS,Gel Cumulus 23 GS 'Black Lake Drive',Black/Lake Drive,youth,Gel Cumulus,2022,2022-03-28,75,75,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/679/original/1014A230_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/679/original/1014A230_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/679/original/1014A230_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-cumulus-23-gs-black-lake-drive-1014a230-001', 'flightClub': 'https://flightclub.com/gel-cumulus-23-gs-black-lake-drive-1014a230-001', 'stadiumGoods': ''}" +023dbd45-8e82-4f66-a871-e9f5157e650f,3023533-100,Under Armour,Lockdown 5 GS 'White Black',White/Black,youth,Lockdown 5,2022,2022-03-28,55,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/966/original/3023533_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/966/original/3023533_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/966/original/3023533_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lockdown-5-gs-white-black-3023533-100', 'flightClub': 'https://flightclub.com/lockdown-5-gs-white-black-3023533-100', 'stadiumGoods': ''}" +04f941c5-ae44-4441-bb86-85c2a2aa03b3,3023449-002,Under Armour,Leadoff Low RM GS 'Black White',Black/White,youth,Leadoff,2022,2022-03-28,30,30,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/964/original/3023449_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/964/original/3023449_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/964/original/3023449_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/leadoff-low-rm-gs-black-white-3023449-002', 'flightClub': 'https://flightclub.com/leadoff-low-rm-gs-black-white-3023449-002', 'stadiumGoods': ''}" +05e837f5-37ca-40be-944c-5ef2f9c4d72c,1024A032-020,ASICS,Gel Quantum Lyte PS 'Piedmont Grey',Piedmont Grey/White,youth,Gel Quantum,2022,2022-03-28,50,50,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/688/original/1024A032_020.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/688/original/1024A032_020.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/688/original/1024A032_020.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-lyte-ps-piedmont-grey-1024a032-020', 'flightClub': 'https://flightclub.com/gel-quantum-lyte-ps-piedmont-grey-1024a032-020', 'stadiumGoods': ''}" +09224bcc-61ee-47e0-989b-26cb7c1f5376,384853-02,Puma,Wmns Cali Dream Metal 'White Silver',White/Silver,women,Cali,2022,2022-03-28,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/545/original/384853_02.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/545/original/384853_02.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/545/original/384853_02.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-cali-dream-metal-white-silver-384853-02', 'flightClub': 'https://flightclub.com/wmns-cali-dream-metal-white-silver-384853-02', 'stadiumGoods': ''}" +0a16af27-0d01-4c08-aee8-7c82811c9c6c,1014A237-400,ASICS,GT 1000 11 GS 'Lake Drive',Lake Drive/Black,youth,GT 1000,2022,2022-03-28,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/910/original/1014A237_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/910/original/1014A237_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/910/original/1014A237_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gt-1000-11-gs-lake-drive-1014a237-400', 'flightClub': 'https://flightclub.com/gt-1000-11-gs-lake-drive-1014a237-400', 'stadiumGoods': ''}" +0b0806ba-85bf-4b7a-95bc-7c08a7a3389b,1014A192-402,ASICS,Contend 7 GS 'Aqua Angel',Aqua Angel/White,youth,Gel Contend,2022,2022-03-28,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/651/original/1014A192_402.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/651/original/1014A192_402.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/651/original/1014A192_402.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-gs-aqua-angel-1014a192-402', 'flightClub': 'https://flightclub.com/contend-7-gs-aqua-angel-1014a192-402', 'stadiumGoods': ''}" +145ac485-ee60-447b-944d-530f0d6504ef,DA3199-102,Nike,Air Max 2021 GS 'Summit White Volt',Summit White/Photon Dust/Black/Volt,youth,Air Max 2021,2022,2022-03-28,140,148,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/809/original/DA3199_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/809/original/DA3199_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/809/original/DA3199_102.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-2021-gs-summit-white-volt-da3199-102', 'flightClub': 'https://flightclub.com/air-max-2021-gs-summit-white-volt-da3199-102', 'stadiumGoods': ''}" +1573f34a-70c6-4a08-86a5-afee1735b53a,CZ5361-400,Nike,Air Max SC TD 'Mystic Navy',Mystic Navy/Black/Light Photo Blue,infant,Air Max SC,2022,2022-03-28,55,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/806/original/CZ5361_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/806/original/CZ5361_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/806/original/CZ5361_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-sc-td-mystic-navy-cz5361-400', 'flightClub': 'https://flightclub.com/air-max-sc-td-mystic-navy-cz5361-400', 'stadiumGoods': ''}" +15865c6c-ec7f-4748-a3c7-ce8411a054ad,3024851-001,Under Armour,Assert 9 Wide AC PS 'Black',Black/White,youth,Assert,2022,2022-03-28,50,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/004/original/3024851_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/004/original/3024851_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/004/original/3024851_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-9-wide-ac-ps-black-3024851-001', 'flightClub': 'https://flightclub.com/assert-9-wide-ac-ps-black-3024851-001', 'stadiumGoods': ''}" +1dd6ced6-4fd6-4979-8c12-1618059f157c,GW3110,adidas,Busenitz Pro 'Bright Yellow Sky Rush',Bright Yellow/Sky Rush/Gum,men,Busenitz,2022,2022-03-28,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/865/original/GW3110.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/865/original/GW3110.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/865/original/GW3110.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/busenitz-pro-bright-yellow-sky-rush-gw3110', 'flightClub': 'https://flightclub.com/busenitz-pro-bright-yellow-sky-rush-gw3110', 'stadiumGoods': ''}" +21107370-de76-47c7-b2ce-30ac6e9d7fb3,3022100-105,Under Armour,Assert 8 GS 'Halo Grey Pink',Halo Grey/White,youth,Assert,2022,2022-03-28,55,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/941/original/3022100_105.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/941/original/3022100_105.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/941/original/3022100_105.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-8-gs-halo-grey-pink-3022100-105', 'flightClub': 'https://flightclub.com/assert-8-gs-halo-grey-pink-3022100-105', 'stadiumGoods': ''}" +2b4fe647-4bcc-48dc-8b56-50bcf7aa5ebd,3022100-001,Under Armour,Assert 8 GS 'Black Pitch Grey',Black/Pitch Grey,youth,Assert,2022,2022-03-28,55,47,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/937/original/3022100_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/937/original/3022100_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/937/original/3022100_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-8-gs-black-pitch-grey-3022100-001', 'flightClub': 'https://flightclub.com/assert-8-gs-black-pitch-grey-3022100-001', 'stadiumGoods': ''}" +2ffb66c1-ab85-4621-ae0a-7903c25b13ea,DJ6564-038,Jordan,Air Jordan 1 Mid SE TD 'Drip',Black/Team Orange/Kumquat/White,infant,Air Jordan 1,2022,2022-03-28,65,105,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/090/original/DJ6564_038.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/090/original/DJ6564_038.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/090/original/DJ6564_038.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-1-mid-se-td-drip-dj6564-038', 'flightClub': 'https://flightclub.com/air-jordan-1-mid-se-td-drip-dj6564-038', 'stadiumGoods': ''}" +3164c8d2-ee9c-45d6-9e95-4a6d53c4dd7a,1204A003-021,ASICS,Gel Quantum 90 3 GS 'Sheet Rock Monaco Blue',Sheet Rock/Monaco Blue,youth,Gel Quantum 90,2022,2022-03-28,75,75,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/735/original/1204A003_021.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/735/original/1204A003_021.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/735/original/1204A003_021.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-90-3-gs-sheet-rock-monaco-blue-1204a003-021', 'flightClub': 'https://flightclub.com/gel-quantum-90-3-gs-sheet-rock-monaco-blue-1204a003-021', 'stadiumGoods': ''}" +378dd44b-df7c-4517-9e0b-a5d985098eda,GW0111,Reebok,Classic Harman Run 'Chalk Black',Chalk/Core Black/Vector Red,men,Harman,2022,2022-03-28,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/138/original/GW0111.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/138/original/GW0111.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/138/original/GW0111.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-harman-run-chalk-black-gw0111', 'flightClub': 'https://flightclub.com/classic-harman-run-chalk-black-gw0111', 'stadiumGoods': ''}" +39a94dd9-b460-4cb8-b58b-a65a617be1f0,3022698-100,Under Armour,Assert 8 AC PS 'White',White,youth,Assert,2022,2022-03-28,50,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/953/original/3022698_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/953/original/3022698_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/953/original/3022698_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-8-ac-ps-white-3022698-100', 'flightClub': 'https://flightclub.com/assert-8-ac-ps-white-3022698-100', 'stadiumGoods': ''}" +3a9a6a13-8d2a-41f2-b1ee-88037ec852bc,GS327SE,New Balance,327 Big Kid 'Leopard',Black/Moonbeam,youth,327,2022,2022-03-28,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/131/original/GS327SE.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/131/original/GS327SE.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/131/original/GS327SE.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/327-big-kid-leopard-gs327se', 'flightClub': 'https://flightclub.com/327-big-kid-leopard-gs327se', 'stadiumGoods': ''}" +3b186688-884a-4743-ab90-9cd5e1f39023,CZ8482-075,Nike,Tiempo Legend 9 Elite FG 'Grey Fog Sapphire',Grey Fog/Sapphire/Volt,men,Tiempo Legend,2022,2022-03-28,230,259,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/807/original/CZ8482_075.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/807/original/CZ8482_075.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/807/original/CZ8482_075.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/tiempo-legend-9-elite-fg-grey-fog-sapphire-cz8482-075', 'flightClub': 'https://flightclub.com/tiempo-legend-9-elite-fg-grey-fog-sapphire-cz8482-075', 'stadiumGoods': ''}" +4bde5e9a-33c1-4fa8-b6a9-05a48dc80f64,GX8494,adidas,Wmns Nizza Trek 'Sandy Beige',Sandy Beige/Supplier Colour/Supplier Colour,women,Nizza,2022,2022-03-28,95,165,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/883/original/GX8494.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/883/original/GX8494.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/883/original/GX8494.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nizza-trek-sandy-beige-gx8494', 'flightClub': 'https://flightclub.com/wmns-nizza-trek-sandy-beige-gx8494', 'stadiumGoods': ''}" +4c61d308-8bee-4ac7-8640-20a679977b1b,1014A150-004,ASICS,GT 1000 9 GS 'Metropolis Black',Metropolis/Black,youth,GT 1000,2022,2022-03-28,75,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/636/original/1014A150_004.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/636/original/1014A150_004.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/636/original/1014A150_004.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gt-1000-9-gs-metropolis-black-1014a150-004', 'flightClub': 'https://flightclub.com/gt-1000-9-gs-metropolis-black-1014a150-004', 'stadiumGoods': ''}" +4f5b4eb2-5c01-424b-8663-2b7c08799927,1014A193-406,ASICS,Contend 7 TS 'Mist Blazing Coral',Mist/Blazing Coral,infant,Gel Contend,2022,2022-03-28,40,40,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/661/original/1014A193_406.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/661/original/1014A193_406.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/661/original/1014A193_406.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-ts-mist-blazing-coral-1014a193-406', 'flightClub': 'https://flightclub.com/contend-7-ts-mist-blazing-coral-1014a193-406', 'stadiumGoods': ''}" +54d5bd2f-8822-4ef6-86ad-8ed6dac72eb6,DJ2518-102,Nike,Nike Air Flight Lite II Mid Olympic,White/Navy/Red/Gold,men,Air Flight Lite,2022,2022-03-28,120,129,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/087/original/DJ2518_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/087/original/DJ2518_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/087/original/DJ2518_102.png.png'}","{'stockX': 'https://stockx.com/nike-air-flight-lite-ii-mid-olympic', 'goat': 'https://goat.com/sneakers/air-flight-lite-mid-olympic-dj2518-102', 'flightClub': 'https://flightclub.com/air-flight-lite-mid-olympic-dj2518-102', 'stadiumGoods': ''}" +5f5cdb2d-8c5e-460c-b745-973ad18ce9d7,PK888LS2,New Balance,888 v2 Little Kid 'Light Surf Summer Fog',Light Surf/Summer Fog/White,youth,888,2022,2022-03-28,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/236/original/PK888LS2.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/236/original/PK888LS2.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/236/original/PK888LS2.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/888-v2-little-kid-light-surf-summer-fog-pk888ls2', 'flightClub': 'https://flightclub.com/888-v2-little-kid-light-surf-summer-fog-pk888ls2', 'stadiumGoods': ''}" +647e290b-c668-4de3-94c8-9c70dffff4cc,3022698-001,Under Armour,Assert 8 AC PS 'Black',Black,youth,Assert,2022,2022-03-28,50,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/951/original/3022698_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/951/original/3022698_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/951/original/3022698_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-8-ac-ps-black-3022698-001', 'flightClub': 'https://flightclub.com/assert-8-ac-ps-black-3022698-001', 'stadiumGoods': ''}" +681b3214-4376-4c7e-aedd-350f4215a0eb,GS237EG,New Balance,237 Big Kid 'Victory Blue Exuberant Pink Gum',Victory Blue/Exuberant Pink,youth,237,2022,2022-03-28,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/130/original/GS237EG.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/130/original/GS237EG.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/130/original/GS237EG.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/237-big-kid-victory-blue-exuberant-pink-gum-gs237eg', 'flightClub': 'https://flightclub.com/237-big-kid-victory-blue-exuberant-pink-gum-gs237eg', 'stadiumGoods': ''}" +6befa94d-6046-4e94-af55-965158a11a2d,DA6725-901,Nike,Cosmic Unity 'Multi-Color',Multi-Color/Multi-Color,men,Cosmic Unity,2022,2022-03-28,150,180,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/602/original/DA6725_901.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/602/original/DA6725_901.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/602/original/DA6725_901.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/cosmic-unity-multi-color-da6725-901', 'flightClub': 'https://flightclub.com/cosmic-unity-multi-color-da6725-901', 'stadiumGoods': ''}" +714cf212-a2bb-498f-84dd-25db0b451cab,1014A192-707,ASICS,Contend 7 GS 'Barely Rose',Barely Rose/White,youth,Gel Contend,2022,2022-03-28,55,82,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/656/original/1014A192_707.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/656/original/1014A192_707.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/656/original/1014A192_707.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-gs-barely-rose-1014a192-707', 'flightClub': 'https://flightclub.com/contend-7-gs-barely-rose-1014a192-707', 'stadiumGoods': ''}" +768cdcb4-7529-46d5-ad2e-277fbf483fa1,3024849-100,Under Armour,Zone BB GS 'Colorshift - White Black',White/Black,youth,Zone,2022,2022-03-28,60,60,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/003/original/3024849_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/003/original/3024849_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/003/original/3024849_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zone-bb-gs-colorshift-white-black-3024849-100', 'flightClub': 'https://flightclub.com/zone-bb-gs-colorshift-white-black-3024849-100', 'stadiumGoods': ''}" +7eda4a0e-be90-4d4e-a9d7-fb7bef24d031,1014A192-114,ASICS,Contend 7 GS 'White Hazard Green',White/Hazard Green,youth,Gel Contend,2022,2022-03-28,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/647/original/1014A192_114.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/647/original/1014A192_114.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/647/original/1014A192_114.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-gs-white-hazard-green-1014a192-114', 'flightClub': 'https://flightclub.com/contend-7-gs-white-hazard-green-1014a192-114', 'stadiumGoods': ''}" +82f91296-b99f-4e4a-89fd-684fed23756f,1014A165-005,ASICS,GT 1000 9 TS 'Black Green Gecko',Black/Green Gecko,infant,GT 1000,2022,2022-03-28,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/637/original/1014A165_005.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/637/original/1014A165_005.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/637/original/1014A165_005.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gt-1000-9-ts-black-green-gecko-1014a165-005', 'flightClub': 'https://flightclub.com/gt-1000-9-ts-black-green-gecko-1014a165-005', 'stadiumGoods': ''}" +8bbe91a9-107b-448d-8644-1c83435864b1,GS327SF,New Balance,327 Big Kid 'Zebra',Black/Surf,youth,327,2022,2022-03-28,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/132/original/GS327SF.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/132/original/GS327SF.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/132/original/GS327SF.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/327-big-kid-zebra-gs327sf', 'flightClub': 'https://flightclub.com/327-big-kid-zebra-gs327sf', 'stadiumGoods': ''}" +8e3089e0-2c16-4e85-a023-93bad1c19395,GX3369,adidas,Forum 360 I 'Legacy Indigo Pink',Legacy Indigo/Cloud White/Almost Lime,infant,Forum,2022,2022-03-28,45,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/168/original/GX3369.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/168/original/GX3369.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/168/original/GX3369.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/forum-360-i-legacy-indigo-pink-gx3369', 'flightClub': 'https://flightclub.com/forum-360-i-legacy-indigo-pink-gx3369', 'stadiumGoods': ''}" +92e085bc-f82e-4c4a-8ba3-e64fa0750792,106477-04,Puma,Ultra 1.3 FG AG 'Green Glare',Green Glare/Elektro Aqua/Spellbound,men,Ultra 1.3,2022,2022-03-28,200,200,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/122/603/original/106477_04.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/122/603/original/106477_04.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/122/603/original/106477_04.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultra-1-3-fg-ag-green-glare-106477-04', 'flightClub': 'https://flightclub.com/ultra-1-3-fg-ag-green-glare-106477-04', 'stadiumGoods': ''}" +9aa4f9b5-e67a-42ee-8c06-b353dab277c2,3022871-403,Under Armour,Surge 2 AC PS 'Midnight Navy',Midnight Navy/Halo Grey,youth,Surge,2022,2022-03-28,48,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/954/original/3022871_403.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/954/original/3022871_403.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/954/original/3022871_403.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/surge-2-ac-ps-midnight-navy-3022871-403', 'flightClub': 'https://flightclub.com/surge-2-ac-ps-midnight-navy-3022871-403', 'stadiumGoods': ''}" +9d6f7d0e-7749-4038-82e3-52c0ccad2698,1014A203-303,ASICS,Jolt 3 GS 'Hazard Green Gentry Purple',Hazard Green/Gentry Purple,youth,Jolt,2022,2022-03-28,45,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/673/original/1014A203_303.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/673/original/1014A203_303.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/673/original/1014A203_303.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jolt-3-gs-hazard-green-gentry-purple-1014a203-303', 'flightClub': 'https://flightclub.com/jolt-3-gs-hazard-green-gentry-purple-1014a203-303', 'stadiumGoods': ''}" +9efe6b58-21ac-4e73-9b43-5f4482478228,WROAVWC,New Balance,Wmns Fresh Foam Roav 'Washed Henna',Washed Henna/Champagne Metallic/Black,women,Fresh Foam Roav,2022,2022-03-28,85,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/257/original/WROAVWC.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/257/original/WROAVWC.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/257/original/WROAVWC.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-fresh-foam-roav-washed-henna-wroavwc', 'flightClub': 'https://flightclub.com/wmns-fresh-foam-roav-washed-henna-wroavwc', 'stadiumGoods': ''}" +a00a29bc-07b2-46b9-adc7-fc5ee1c8ed79,3023449-601,Under Armour,Leadoff Low RM GS 'Cerise White',Cerise/White,youth,Leadoff,2022,2022-03-28,30,30,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/965/original/3023449_601.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/965/original/3023449_601.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/965/original/3023449_601.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/leadoff-low-rm-gs-cerise-white-3023449-601', 'flightClub': 'https://flightclub.com/leadoff-low-rm-gs-cerise-white-3023449-601', 'stadiumGoods': ''}" +a153c510-8c44-40e2-b163-10bf446e92ec,3024325-600,Under Armour,Harper 6 Mid RM GS 'Red Hyper Green',Red/Hyper Green,youth,Harper 6,2022,2022-03-28,40,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/986/original/3024325_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/986/original/3024325_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/986/original/3024325_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/harper-6-mid-rm-gs-red-hyper-green-3024325-600', 'flightClub': 'https://flightclub.com/harper-6-mid-rm-gs-red-hyper-green-3024325-600', 'stadiumGoods': ''}" +a267be36-13bf-489f-a932-147ab2c386e5,WROAVNB,New Balance,Wmns Fresh Foam Roav 'Night Tide Light Aluminum',Night Tide/Bleached Lime Glow/Light Aluminum,women,Fresh Foam Roav,2022,2022-03-28,85,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/256/original/WROAVNB.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/256/original/WROAVNB.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/256/original/WROAVNB.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-fresh-foam-roav-night-tide-light-aluminum-wroavnb', 'flightClub': 'https://flightclub.com/wmns-fresh-foam-roav-night-tide-light-aluminum-wroavnb', 'stadiumGoods': ''}" +a4bb7ec3-d78e-4be1-a5aa-276834e1574d,3022100-407,Under Armour,Assert 8 GS 'Electric Blue',Electric Blue/Halo Grey,youth,Assert,2022,2022-03-28,55,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/944/original/3022100_407.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/944/original/3022100_407.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/944/original/3022100_407.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-8-gs-electric-blue-3022100-407', 'flightClub': 'https://flightclub.com/assert-8-gs-electric-blue-3022100-407', 'stadiumGoods': ''}" +a5a2dd4f-59df-4e5b-a9b4-17ca68f5f88a,1014A203-405,ASICS,Jolt 3 GS 'French Blue Blazing Coral',French Blue/Blazing Coral,youth,Jolt,2022,2022-03-28,45,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/674/original/1014A203_405.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/674/original/1014A203_405.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/674/original/1014A203_405.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jolt-3-gs-french-blue-blazing-coral-1014a203-405', 'flightClub': 'https://flightclub.com/jolt-3-gs-french-blue-blazing-coral-1014a203-405', 'stadiumGoods': ''}" +aa1dfc68-9fea-4afb-a8d9-3a9dd5548177,GV9156,adidas,Stella McCartney x Wmns UltraBoost 22 'Scarlet Leopard',Cloud White/Scarlet/Pearl Citrine,women,UltraBoost 22,2022,2022-03-28,230,296,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/584/original/GV9156.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/584/original/GV9156.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/584/original/GV9156.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/stella-mccartney-x-wmns-ultraboost-22-scarlet-leopard-gv9156', 'flightClub': 'https://flightclub.com/stella-mccartney-x-wmns-ultraboost-22-scarlet-leopard-gv9156', 'stadiumGoods': ''}" +ac33a335-7cd4-4235-bb64-43ef5c262d6b,3024485-001,Under Armour,Charged Pursuit 2 AC PS 'Big Logo - Black White',Black/White,youth,Charged Pursuit,2022,2022-03-28,52,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/988/original/3024485_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/988/original/3024485_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/988/original/3024485_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-2-ac-ps-big-logo-black-white-3024485-001', 'flightClub': 'https://flightclub.com/charged-pursuit-2-ac-ps-big-logo-black-white-3024485-001', 'stadiumGoods': ''}" +b08e6e4d-1657-422c-a69d-113c55b86620,3022100-008,Under Armour,Assert 8 GS 'Black Blue',Black/White,youth,Assert,2022,2022-03-28,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/940/original/3022100_008.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/940/original/3022100_008.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/940/original/3022100_008.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-8-gs-black-blue-3022100-008', 'flightClub': 'https://flightclub.com/assert-8-gs-black-blue-3022100-008', 'stadiumGoods': ''}" +b18be565-dcf2-4dde-9478-439f49058ecd,3023534-103,Under Armour,Lockdown 5 PS 'Halo Grey Quirky Lime Camo',Halo Grey/Quirky Lime,youth,Lockdown 5,2022,2022-03-28,50,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/972/original/3023534_103.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/972/original/3023534_103.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/972/original/3023534_103.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lockdown-5-ps-halo-grey-quirky-lime-camo-3023534-103', 'flightClub': 'https://flightclub.com/lockdown-5-ps-halo-grey-quirky-lime-camo-3023534-103', 'stadiumGoods': ''}" +b4ecc145-6196-46f6-b6d3-f7bf4608f23a,1014A192-007,ASICS,Contend 7 GS 'Black Digital Aqua',Black/Digital Aqua,youth,Gel Contend,2022,2022-03-28,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/646/original/1014A192_007.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/646/original/1014A192_007.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/646/original/1014A192_007.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-gs-black-digital-aqua-1014a192-007', 'flightClub': 'https://flightclub.com/contend-7-gs-black-digital-aqua-1014a192-007', 'stadiumGoods': ''}" +b8680c50-8c54-4b5c-9801-dfbc59aca2c7,CN8559-406,Nike,MD Valiant PS 'Mystic Navy Grey Fog',Mystic Navy/Atomic Green/Grey Fog,youth,MD Valiant,2022,2022-03-28,55,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/054/original/CN8559_406.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/054/original/CN8559_406.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/054/original/CN8559_406.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/md-valiant-ps-mystic-navy-grey-fog-cn8559-406', 'flightClub': 'https://flightclub.com/md-valiant-ps-mystic-navy-grey-fog-cn8559-406', 'stadiumGoods': ''}" +bd69e153-a7d6-44d7-abd6-3da2df1a9907,1204A001-600,ASICS,Gel Quantum 360 6 GS 'Beet Juice',Beet Juice/Pure Silver,youth,Gel Quantum 360,2022,2022-03-28,120,190,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/730/original/1204A001_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/730/original/1204A001_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/730/original/1204A001_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-360-6-gs-beet-juice-1204a001-600', 'flightClub': 'https://flightclub.com/gel-quantum-360-6-gs-beet-juice-1204a001-600', 'stadiumGoods': ''}" +bd9567c9-3705-4233-876d-06c8f07734eb,CN8560-406,Nike,MD Valiant TD 'Mystic Navy Grey Fog',Mystic Navy/Atomic Green/Grey Fog,infant,MD Valiant,2022,2022-03-28,45,45,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/056/original/CN8560_406.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/056/original/CN8560_406.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/056/original/CN8560_406.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/md-valiant-td-mystic-navy-grey-fog-cn8560-406', 'flightClub': 'https://flightclub.com/md-valiant-td-mystic-navy-grey-fog-cn8560-406', 'stadiumGoods': ''}" +bf4846bb-e636-43f9-b44e-0862d2d00b48,1014A193-404,ASICS,Contend 7 TS 'French Blue',French Blue/Digital Aqua,infant,Gel Contend,2022,2022-03-28,40,40,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/659/original/1014A193_404.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/659/original/1014A193_404.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/659/original/1014A193_404.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-ts-french-blue-1014a193-404', 'flightClub': 'https://flightclub.com/contend-7-ts-french-blue-1014a193-404', 'stadiumGoods': ''}" +c3de9f07-118f-4fc7-af10-9429565f3289,1024A032-003,ASICS,Gel Quantum Lyte PS 'Black Cotton Candy',Black/Cotton Candy,youth,Gel Quantum,2022,2022-03-28,50,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/687/original/1024A032_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/687/original/1024A032_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/687/original/1024A032_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-lyte-ps-black-cotton-candy-1024a032-003', 'flightClub': 'https://flightclub.com/gel-quantum-lyte-ps-black-cotton-candy-1024a032-003', 'stadiumGoods': ''}" +c44053d8-8766-4121-9825-a78a7a9097d0,3024485-400,Under Armour,Charged Pursuit 2 AC PS 'Big Logo - Blue Note',Blue Note/White,youth,Charged Pursuit,2022,2022-03-28,52,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/990/original/3024485_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/990/original/3024485_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/990/original/3024485_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-2-ac-ps-big-logo-blue-note-3024485-400', 'flightClub': 'https://flightclub.com/charged-pursuit-2-ac-ps-big-logo-blue-note-3024485-400', 'stadiumGoods': ''}" +cd1b41e7-7b7c-4980-bf43-4adf096fbfd6,1014A280-100,ASICS,Pre Excite 9 PS 'White Pink Glow',White/Pink Glow,youth,Pre Excite,2022,2022-03-28,55,92,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/685/original/1014A280_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/685/original/1014A280_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/685/original/1014A280_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/pre-excite-9-ps-white-pink-glow-1014a280-100', 'flightClub': 'https://flightclub.com/pre-excite-9-ps-white-pink-glow-1014a280-100', 'stadiumGoods': ''}" +d01c6cb8-569e-4d36-a345-05cb58e6001a,1024A032-402,ASICS,Gel Quantum Lyte PS 'Peacoat Classic Red',Peacoat/Classic Red,youth,Gel Quantum,2022,2022-03-28,50,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/689/original/1024A032_402.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/689/original/1024A032_402.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/689/original/1024A032_402.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-lyte-ps-peacoat-classic-red-1024a032-402', 'flightClub': 'https://flightclub.com/gel-quantum-lyte-ps-peacoat-classic-red-1024a032-402', 'stadiumGoods': ''}" +d1fd71ae-d315-4e03-b8a5-6ff1a9faa256,3024262-001,Under Armour,Zone BB GS 'Black Concrete Camo',Black/Concrete,youth,Zone,2022,2022-03-28,60,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/980/original/3024262_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/980/original/3024262_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/980/original/3024262_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zone-bb-gs-black-concrete-camo-3024262-001', 'flightClub': 'https://flightclub.com/zone-bb-gs-black-concrete-camo-3024262-001', 'stadiumGoods': ''}" +d2ef8d7b-b127-4e16-9453-491dc24df1bd,1014A237-001,ASICS,GT 1000 11 GS 'Black White',Black/White,youth,GT 1000,2022,2022-03-28,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/908/original/1014A237_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/908/original/1014A237_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/908/original/1014A237_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gt-1000-11-gs-black-white-1014a237-001', 'flightClub': 'https://flightclub.com/gt-1000-11-gs-black-white-1014a237-001', 'stadiumGoods': ''}" +d49d85ad-b31a-4e81-8315-8b838d875a66,1014A237-401,ASICS,GT 1000 11 GS 'French Blue',French Blue/French Blue,youth,GT 1000,2022,2022-03-28,75,75,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/911/original/1014A237_401.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/911/original/1014A237_401.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/911/original/1014A237_401.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gt-1000-11-gs-french-blue-1014a237-401', 'flightClub': 'https://flightclub.com/gt-1000-11-gs-french-blue-1014a237-401', 'stadiumGoods': ''}" +d841491f-f091-4e2a-b7f5-1f4c72d1bd6b,1014A192-121,ASICS,Contend 7 GS 'White Barely Rose',White/Barely Rose,youth,Gel Contend,2022,2022-03-28,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/648/original/1014A192_121.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/648/original/1014A192_121.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/648/original/1014A192_121.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-gs-white-barely-rose-1014a192-121', 'flightClub': 'https://flightclub.com/contend-7-gs-white-barely-rose-1014a192-121', 'stadiumGoods': ''}" +e0de41e9-3369-4e57-99ac-a5598b5f8e6e,3022100-005,Under Armour,Assert 8 GS 'Triple Black',Black,youth,Assert,2022,2022-03-28,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/939/original/3022100_005.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/939/original/3022100_005.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/939/original/3022100_005.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-8-gs-triple-black-3022100-005', 'flightClub': 'https://flightclub.com/assert-8-gs-triple-black-3022100-005', 'stadiumGoods': ''}" +e2725a60-56f1-42f4-98bc-e0f9e8318e73,3023533-103,Under Armour,Lockdown 5 GS 'Halo Grey Quirky Lime',Halo Grey/Quirky Lime,youth,Lockdown 5,2022,2022-03-28,55,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/969/original/3023533_103.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/969/original/3023533_103.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/969/original/3023533_103.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lockdown-5-gs-halo-grey-quirky-lime-3023533-103', 'flightClub': 'https://flightclub.com/lockdown-5-gs-halo-grey-quirky-lime-3023533-103', 'stadiumGoods': ''}" +e502675d-b1de-43f8-942a-d2d3119ea708,3022100-602,Under Armour,Assert 8 GS 'Eclectic Pink',Eclectic Pink/White,youth,Assert,2022,2022-03-28,55,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/945/original/3022100_602.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/945/original/3022100_602.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/945/original/3022100_602.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-8-gs-eclectic-pink-3022100-602', 'flightClub': 'https://flightclub.com/assert-8-gs-eclectic-pink-3022100-602', 'stadiumGoods': ''}" +e71594f3-738c-4a42-a0fa-2c1f4ffd692a,3022100-110,Under Armour,Assert 8 GS 'Halo Grey White',Halo Grey/White,youth,Assert,2022,2022-03-28,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/942/original/3022100_110.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/942/original/3022100_110.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/942/original/3022100_110.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-8-gs-halo-grey-white-3022100-110', 'flightClub': 'https://flightclub.com/assert-8-gs-halo-grey-white-3022100-110', 'stadiumGoods': ''}" +e72e637b-b347-49fb-8e79-41503aa87d94,1014A237-500,ASICS,GT 1000 11 GS 'Deep Plum Barely Rose',Deep Plum/Barely Rose,youth,GT 1000,2022,2022-03-28,75,75,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/913/original/1014A237_500.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/913/original/1014A237_500.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/913/original/1014A237_500.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gt-1000-11-gs-deep-plum-barely-rose-1014a237-500', 'flightClub': 'https://flightclub.com/gt-1000-11-gs-deep-plum-barely-rose-1014a237-500', 'stadiumGoods': ''}" +ef598624-7a96-44c0-a462-7777a4e437c1,CW7430-404,Nike,Flex Plus TD 'Worn Blue Aura',Worn Blue/Aura/White,infant,Flex,2022,2022-03-28,45,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/060/original/CW7430_404.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/060/original/CW7430_404.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/060/original/CW7430_404.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/flex-plus-td-worn-blue-aura-cw7430-404', 'flightClub': 'https://flightclub.com/flex-plus-td-worn-blue-aura-cw7430-404', 'stadiumGoods': ''}" +f0ad35ff-40a5-454e-820a-77cf2bd75537,1014A192-404,ASICS,Contend 7 GS 'French Blue',French Blue/Digital Aqua,youth,Gel Contend,2022,2022-03-28,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/653/original/1014A192_404.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/653/original/1014A192_404.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/653/original/1014A192_404.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-gs-french-blue-1014a192-404', 'flightClub': 'https://flightclub.com/contend-7-gs-french-blue-1014a192-404', 'stadiumGoods': ''}" +f0e0d768-e3e5-418b-8d24-ff99876144e9,GX6123,Reebok,Classic Leather 1983 Vintage 'Chalk Vector Navy',Chalk/Vector Navy/Alabaster,men,Reebok Classic,2022,2022-03-28,90,119,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/826/original/GX6123.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/826/original/GX6123.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/826/original/GX6123.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-leather-1983-vintage-chalk-vector-navy-gx6123', 'flightClub': 'https://flightclub.com/classic-leather-1983-vintage-chalk-vector-navy-gx6123', 'stadiumGoods': ''}" +f20e22e3-1738-4c5e-908a-f206a3ffac71,1024A032-002,ASICS,Gel Quantum Lyte PS 'Black Metropolis',Black/Metropolis,youth,Gel Quantum,2022,2022-03-28,50,50,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/686/original/1024A032_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/686/original/1024A032_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/686/original/1024A032_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-lyte-ps-black-metropolis-1024a032-002', 'flightClub': 'https://flightclub.com/gel-quantum-lyte-ps-black-metropolis-1024a032-002', 'stadiumGoods': ''}" +f36039ce-0345-40d3-b310-67230b9c488a,DJ6562-038,Jordan,Jordan 1 Mid SE Wavy (PS),Black/White-Team Orange-Kumquat,preschool,Air Jordan 1,2022,2022-03-28,80,102,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/088/original/DJ6562_038.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/088/original/DJ6562_038.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/088/original/DJ6562_038.png.png'}","{'stockX': 'https://stockx.com/air-jordan-1-mid-se-wavy-ps', 'goat': 'https://goat.com/sneakers/air-jordan-1-mid-se-ps-drip-dj6562-038', 'flightClub': 'https://flightclub.com/air-jordan-1-mid-se-ps-drip-dj6562-038', 'stadiumGoods': ''}" +f447745d-1f2f-4238-a463-28e4158728f5,FZ3255,adidas,Wmns Terrex AX4 Primegreen 'Black Grey',Core Black/Grey Three/Mint Ton,women,Terrex AX4,2022,2022-03-28,90,127,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/848/original/FZ3255.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/848/original/FZ3255.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/848/original/FZ3255.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-terrex-ax4-primegreen-black-grey-fz3255', 'flightClub': 'https://flightclub.com/wmns-terrex-ax4-primegreen-black-grey-fz3255', 'stadiumGoods': ''}" +f4672a39-9793-4879-848f-07f96a88e499,3022697-100,Under Armour,Assert 8 GS 'White',White,youth,Assert,2022,2022-03-28,55,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/949/original/3022697_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/949/original/3022697_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/949/original/3022697_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-8-gs-white-3022697-100', 'flightClub': 'https://flightclub.com/assert-8-gs-white-3022697-100', 'stadiumGoods': ''}" +f6b74809-ac51-45ee-be08-26f3f83a12e2,GX3140,adidas,Nebzed Super Boost 'Black White',Core Black/Core Black/Cloud White,men,Nebzed,2022,2022-03-28,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/878/original/GX3140.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/878/original/GX3140.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/878/original/GX3140.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/nebzed-super-boost-black-white-gx3140', 'flightClub': 'https://flightclub.com/nebzed-super-boost-black-white-gx3140', 'stadiumGoods': ''}" +f6c7cc96-80a2-4325-911e-e49ade2cf825,384853-01,Puma,Wmns Cali Dream Metal 'Black Rose Gold',Black/White/Rose Gold,women,Cali,2022,2022-03-28,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/543/original/384853_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/543/original/384853_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/543/original/384853_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-cali-dream-metal-black-rose-gold-384853-01', 'flightClub': 'https://flightclub.com/wmns-cali-dream-metal-black-rose-gold-384853-01', 'stadiumGoods': ''}" +f7f4a8c9-0d2a-48d5-b6e4-81048ec33dd1,3023534-003,Under Armour,Lockdown 5 PS 'Black White Camo',Black/White,youth,Lockdown 5,2022,2022-03-28,50,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/970/original/3023534_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/970/original/3023534_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/970/original/3023534_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lockdown-5-ps-black-white-camo-3023534-003', 'flightClub': 'https://flightclub.com/lockdown-5-ps-black-white-camo-3023534-003', 'stadiumGoods': ''}" +f86bc77c-c50f-44a9-9953-f3386f0005fa,3024262-002,Under Armour,Zone BB GS 'Black Red Camo',Black/Red,youth,Zone,2022,2022-03-28,60,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/981/original/3024262_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/981/original/3024262_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/981/original/3024262_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zone-bb-gs-black-red-camo-3024262-002', 'flightClub': 'https://flightclub.com/zone-bb-gs-black-red-camo-3024262-002', 'stadiumGoods': ''}" +fb7fd521-593c-4a52-999d-bf359c72d569,1014A192-002,ASICS,Contend 7 GS 'Black White',Black/White,youth,Gel Contend,2022,2022-03-28,55,83,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/641/original/1014A192_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/641/original/1014A192_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/641/original/1014A192_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-7-gs-black-white-1014a192-002', 'flightClub': 'https://flightclub.com/contend-7-gs-black-white-1014a192-002', 'stadiumGoods': ''}" +fb8b5414-f0e1-4a5d-a008-aa75934a2395,3022871-503,Under Armour,Surge 2 AC PS 'Planet Purple',Planet Purple/White,youth,Surge,2022,2022-03-28,48,105,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/956/original/3022871_503.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/956/original/3022871_503.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/956/original/3022871_503.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/surge-2-ac-ps-planet-purple-3022871-503', 'flightClub': 'https://flightclub.com/surge-2-ac-ps-planet-purple-3022871-503', 'stadiumGoods': ''}" +fe424db2-830a-412c-8bca-33bc7496d480,1014A237-021,ASICS,GT 1000 11 GS 'Graphite Grey Champagne',Graphite Grey/Champagne,youth,GT 1000,2022,2022-03-28,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/909/original/1014A237_021.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/909/original/1014A237_021.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/909/original/1014A237_021.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gt-1000-11-gs-graphite-grey-champagne-1014a237-021', 'flightClub': 'https://flightclub.com/gt-1000-11-gs-graphite-grey-champagne-1014a237-021', 'stadiumGoods': ''}" +00679f88-5af2-4171-b82f-f69da22600c0,194596-07,Puma,Velocity Nitro 'Castlerock Black',Castlerock/Black/Green Glare,men,Velocity Nitro,2022,2022-03-27,120,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/374/645/original/194596_07.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/374/645/original/194596_07.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/374/645/original/194596_07.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/velocity-nitro-castlerock-black-194596-07', 'flightClub': 'https://flightclub.com/velocity-nitro-castlerock-black-194596-07', 'stadiumGoods': ''}" +00812847-2f40-4820-88df-24f1bc51cfaf,3024293-102,Under Armour,HOVR Sonic 4 Team 'Texas Tech University',White/Red,men,HOVR Sonic,2022,2022-03-27,120,195,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/983/original/3024293_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/983/original/3024293_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/983/original/3024293_102.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/hovr-sonic-4-team-texas-tech-university-3024293-102', 'flightClub': 'https://flightclub.com/hovr-sonic-4-team-texas-tech-university-3024293-102', 'stadiumGoods': ''}" +05583e2f-9eff-4c12-bdce-f22178431c6f,3024875-107,Under Armour,Charged Impulse 2 'Black Metallic Silver',Black/Metallic Silver,men,Charged Impulse,2022,2022-03-27,80,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/006/original/3024875_107.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/006/original/3024875_107.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/006/original/3024875_107.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-impulse-2-black-metallic-silver-3024875-107', 'flightClub': 'https://flightclub.com/charged-impulse-2-black-metallic-silver-3024875-107', 'stadiumGoods': ''}" +062dd540-39dc-4be6-9cac-37b053d75898,GX9317,Reebok,Rich Froning Jr. x Nano X1 'Into the Storm - White',Footwear White/Vector Navy/Gold Metallic,men,Nano X1,2022,2022-03-27,155,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/176/original/GX9317.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/176/original/GX9317.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/176/original/GX9317.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rich-froning-jr-x-nano-x1-into-the-storm-white-gx9317', 'flightClub': 'https://flightclub.com/rich-froning-jr-x-nano-x1-into-the-storm-white-gx9317', 'stadiumGoods': ''}" +0ebab116-d7e5-47c9-aaad-d9d541d56ffc,1014A191-406,ASICS,GT 1000 10 PS 'Aqua Angel Champagne',Aqua Angel/Champagne,youth,GT 1000,2022,2022-03-27,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/639/original/1014A191_406.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/639/original/1014A191_406.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/639/original/1014A191_406.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gt-1000-10-ps-aqua-angel-champagne-1014a191-406', 'flightClub': 'https://flightclub.com/gt-1000-10-ps-aqua-angel-champagne-1014a191-406', 'stadiumGoods': ''}" +16df203e-24fe-46ea-8b5b-81e6d4918eb6,3023404-102,Under Armour,Infinity 3 GS 'Jet Grey',Jet Grey/White,youth,Infinity 3,2022,2022-03-27,65,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/960/original/3023404_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/960/original/3023404_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/960/original/3023404_102.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/infinity-3-gs-jet-grey-3023404-102', 'flightClub': 'https://flightclub.com/infinity-3-gs-jet-grey-3023404-102', 'stadiumGoods': ''}" +17a5bf8d-0dfd-45c2-90a4-175b8b0e6b6c,3024293-601,Under Armour,HOVR Sonic 4 Team 'University of South Carolina',Red/White,men,HOVR Sonic,2022,2022-03-27,120,195,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/985/original/3024293_601.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/985/original/3024293_601.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/985/original/3024293_601.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/hovr-sonic-4-team-university-of-south-carolina-3024293-601', 'flightClub': 'https://flightclub.com/hovr-sonic-4-team-university-of-south-carolina-3024293-601', 'stadiumGoods': ''}" +1d539a2b-664a-4e53-bd3b-e9ddba47c9cc,GY8432,Reebok,Speed 21 TR 'White Court Blue',Footwear White/Hint Mint/Court Blue,men,Speed 21,2022,2022-03-27,110,180,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/200/original/GY8432.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/200/original/GY8432.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/200/original/GY8432.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/speed-21-tr-white-court-blue-gy8432', 'flightClub': 'https://flightclub.com/speed-21-tr-white-court-blue-gy8432', 'stadiumGoods': ''}" +1db6c16d-d6dc-4ded-b7e8-db6a80052f24,DM4325-600,Nike,Team Hustle D 10 Lil TD 'Peach',Atmosphere/Crimson Bliss/Atomic Green/White,infant,Team Hustle D10,2022,2022-03-27,50,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/096/original/DM4325_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/096/original/DM4325_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/096/original/DM4325_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/team-hustle-d-10-lil-td-peach-dm4325-600', 'flightClub': 'https://flightclub.com/team-hustle-d-10-lil-td-peach-dm4325-600', 'stadiumGoods': ''}" +24675928-0238-4b87-8d60-0539c904fb7c,DA1105-007,Nike,Quest 4 'Light Smoke Grey',Light Smoke Grey/Black/Siren Red/White,men,Quest 4,2022,2022-03-27,75,746,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/064/original/DA1105_007.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/064/original/DA1105_007.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/064/original/DA1105_007.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/quest-4-light-smoke-grey-da1105-007', 'flightClub': 'https://flightclub.com/quest-4-light-smoke-grey-da1105-007', 'stadiumGoods': ''}" +2d6ddcd1-de34-4bca-b252-47a93b1a9306,3024794-106,Under Armour,Jet '21 GS 'Mod Grey Quirky Lime Camo',Mod Grey/Quirky Lime,youth,Jet,2022,2022-03-27,55,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/001/original/3024794_106.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/001/original/3024794_106.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/001/original/3024794_106.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jet-21-gs-mod-grey-quirky-lime-camo-3024794-106', 'flightClub': 'https://flightclub.com/jet-21-gs-mod-grey-quirky-lime-camo-3024794-106', 'stadiumGoods': ''}" +2d82d2ac-28bc-4b6d-ae67-c1426cf9041f,3024634-100,Under Armour,Assert 9 GS 'Grey Wolf',Grey Wolf/White,youth,Assert,2022,2022-03-27,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/991/original/3024634_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/991/original/3024634_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/991/original/3024634_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-9-gs-grey-wolf-3024634-100', 'flightClub': 'https://flightclub.com/assert-9-gs-grey-wolf-3024634-100', 'stadiumGoods': ''}" +2f45fd1f-0e9b-4171-be45-e4b46e033105,GW0624,adidas,ZX 2K Boost 2.0 'Digi - White Pulse Lime',Cloud White/Pulse Lime/Pulse Lime,men,ZX 2K,2022,2022-03-27,150,220,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/139/original/GW0624.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/139/original/GW0624.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/139/original/GW0624.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zx-2k-boost-2-0-digi-white-pulse-lime-gw0624', 'flightClub': 'https://flightclub.com/zx-2k-boost-2-0-digi-white-pulse-lime-gw0624', 'stadiumGoods': ''}" +32443958-6f0b-4eba-9e1f-a5c30c0839cd,GZ8281,Reebok,Wmns Flexagon Force 3 'Black Maroon',Core Black/Maroon/Pursuit Pink,women,Flexagon,2022,2022-03-27,65,79,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/221/original/GZ8281.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/221/original/GZ8281.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/221/original/GZ8281.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-flexagon-force-3-black-maroon-gz8281', 'flightClub': 'https://flightclub.com/wmns-flexagon-force-3-black-maroon-gz8281', 'stadiumGoods': ''}" +35492b85-eb34-4f85-a8d3-7833f50eb7e8,DA3131-004,Jordan,Jordan Zion 1 GS 'Black Hyper Royal',Black/Hyper Royal/White,youth,Jordan Zion 1,2022,2022-03-27,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/065/original/DA3131_004.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/065/original/DA3131_004.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/065/original/DA3131_004.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jordan-zion-1-gs-black-hyper-royal-da3131-004', 'flightClub': 'https://flightclub.com/jordan-zion-1-gs-black-hyper-royal-da3131-004', 'stadiumGoods': ''}" +375167df-a6c7-48a1-a459-24f467cc7d9a,3024634-600,Under Armour,Assert 9 GS 'Cool Pink',Cool Pink/White,youth,Assert,2022,2022-03-27,55,56,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/995/original/3024634_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/995/original/3024634_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/995/original/3024634_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-9-gs-cool-pink-3024634-600', 'flightClub': 'https://flightclub.com/assert-9-gs-cool-pink-3024634-600', 'stadiumGoods': ''}" +382a0b7d-2304-4a27-a4d0-c84e133b491b,GW8237,adidas,ZX 2K Boost 2.0 'Digi - Black Pink',Cloud White/Core Black/Solar Yellow,men,ZX 2K,2022,2022-03-27,150,220,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/154/original/GW8237.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/154/original/GW8237.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/154/original/GW8237.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zx-2k-boost-2-0-digi-black-pink-gw8237', 'flightClub': 'https://flightclub.com/zx-2k-boost-2-0-digi-black-pink-gw8237', 'stadiumGoods': ''}" +38e8333c-0237-4ad1-a599-dceb03346a21,GX3057,adidas,SolarGlide 4 ST 'Carbon Silver Metallic',Carbon/Silver Metallic/Mint Rush,men,SolarGlide,2022,2022-03-27,140,210,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/167/original/GX3057.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/167/original/GX3057.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/167/original/GX3057.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/solarglide-4-st-carbon-silver-metallic-gx3057', 'flightClub': 'https://flightclub.com/solarglide-4-st-carbon-silver-metallic-gx3057', 'stadiumGoods': ''}" +41a711e0-af88-45be-b0e5-329b4fb8593b,DA3199-101,Nike,Air Max 2021 GS 'Summit White Solar Red',Summit White/Solar Red/Black/Court Blue,youth,Air Max 2021,2022,2022-03-27,140,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/068/original/DA3199_101.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/068/original/DA3199_101.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/068/original/DA3199_101.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-2021-gs-summit-white-solar-red-da3199-101', 'flightClub': 'https://flightclub.com/air-max-2021-gs-summit-white-solar-red-da3199-101', 'stadiumGoods': ''}" +45d039e2-c5a1-45d3-ab57-3c02ab04eaac,GX6049,adidas,FortaRun Messi EL J 'Black Semi Solar Gold',Core Black/Cloud White/Semi Solar Gold,youth,FortaRun,2022,2022-03-27,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/879/original/GX6049.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/879/original/GX6049.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/879/original/GX6049.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fortarun-messi-el-j-black-semi-solar-gold-gx6049', 'flightClub': 'https://flightclub.com/fortarun-messi-el-j-black-semi-solar-gold-gx6049', 'stadiumGoods': ''}" +48faa70e-6453-4567-96f3-cf5dce0a40ed,3024794-104,Under Armour,Jet '21 GS 'Halo Grey Pacific Purple Camo',Halo Grey/Pacific Purple,youth,Jet,2022,2022-03-27,55,128,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/998/original/3024794_104.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/998/original/3024794_104.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/998/original/3024794_104.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jet-21-gs-halo-grey-pacific-purple-camo-3024794-104', 'flightClub': 'https://flightclub.com/jet-21-gs-halo-grey-pacific-purple-camo-3024794-104', 'stadiumGoods': ''}" +526b2cfb-48a7-48ac-8b76-5565d6c32a87,3022092-001,Under Armour,Micro G Pursuit BP GS 'Black White',Black/White,youth,Micro G Pursuit,2022,2022-03-27,60,65,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/936/original/3022092_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/936/original/3022092_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/936/original/3022092_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/micro-g-pursuit-bp-gs-black-white-3022092-001', 'flightClub': 'https://flightclub.com/micro-g-pursuit-bp-gs-black-white-3022092-001', 'stadiumGoods': ''}" +5585e342-005d-4475-ac1c-72fb529953ed,GX5549,adidas,UltraBoost 21 GTX 'Black Silver Metallic',Core Black/Silver Metallic/Turbo,men,UltraBoost 21,2022,2022-03-27,230,230,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/172/original/GX5549.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/172/original/GX5549.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/172/original/GX5549.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultraboost-21-gtx-black-silver-metallic-gx5549', 'flightClub': 'https://flightclub.com/ultraboost-21-gtx-black-silver-metallic-gx5549', 'stadiumGoods': ''}" +6062e081-e982-4314-a684-f0329400747a,GW3191,adidas,Busenitz Vulc 2 'Black Gold Metallic',Core Black/Cloud White/Gold Metallic,men,Busenitz,2022,2022-03-27,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/146/original/GW3191.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/146/original/GW3191.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/146/original/GW3191.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/busenitz-vulc-2-black-gold-metallic-gw3191', 'flightClub': 'https://flightclub.com/busenitz-vulc-2-black-gold-metallic-gw3191', 'stadiumGoods': ''}" +704da1b7-b1bb-45bf-bb95-8a44d461ac72,GW3375,Reebok,Classic Leather J 'White Vector Red',Footwear White/Footwear White/Vector Red,youth,Reebok Classic,2022,2022-03-27,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/148/original/GW3375.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/148/original/GW3375.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/148/original/GW3375.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-leather-j-white-vector-red-gw3375', 'flightClub': 'https://flightclub.com/classic-leather-j-white-vector-red-gw3375', 'stadiumGoods': ''}" +72e59d29-e4bf-441a-a4b6-1062291e67cf,DM4324-600,Nike,Team Hustle D 10 Lil PS 'Peach',Atmosphere/Crimson Bliss/Atomic Green/White,youth,Team Hustle D10,2022,2022-03-27,55,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/094/original/DM4324_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/094/original/DM4324_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/094/original/DM4324_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/team-hustle-d-10-lil-ps-peach-dm4324-600', 'flightClub': 'https://flightclub.com/team-hustle-d-10-lil-ps-peach-dm4324-600', 'stadiumGoods': ''}" +75595efb-610a-4c43-a93a-e6966f1f4730,GW3374,Reebok,Classic Leather J 'Vector Red',Vector Red/Vector Red/Footwear White,youth,Reebok Classic,2022,2022-03-27,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/147/original/GW3374.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/147/original/GW3374.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/147/original/GW3374.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-leather-j-vector-red-gw3374', 'flightClub': 'https://flightclub.com/classic-leather-j-vector-red-gw3374', 'stadiumGoods': ''}" +77c0a9ce-50fd-40e0-b8e3-f076e8f3cbaa,3025098-300,Under Armour,HOVR Rise 3 Printed 'Tent Jet Grey',Tent/Jet Grey,men,HOVR Rise,2022,2022-03-27,110,185,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/007/original/3025098_300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/007/original/3025098_300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/007/original/3025098_300.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/hovr-rise-3-printed-tent-jet-grey-3025098-300', 'flightClub': 'https://flightclub.com/hovr-rise-3-printed-tent-jet-grey-3025098-300', 'stadiumGoods': ''}" +8707c518-ca9d-496b-a344-110e854ad7d0,3024794-600,Under Armour,Jet '21 GS 'Red Black Camo',Red/Black,youth,Jet,2022,2022-03-27,55,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/002/original/3024794_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/002/original/3024794_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/002/original/3024794_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jet-21-gs-red-black-camo-3024794-600', 'flightClub': 'https://flightclub.com/jet-21-gs-red-black-camo-3024794-600', 'stadiumGoods': ''}" +8778e415-6331-45b5-84d1-c7d73c476137,3024293-600,Under Armour,HOVR Sonic 4 Team 'University of Wisconsin-Madison',Red/White,men,HOVR Sonic,2022,2022-03-27,120,195,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/984/original/3024293_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/984/original/3024293_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/984/original/3024293_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/hovr-sonic-4-team-university-of-wisconsin-madison-3024293-600', 'flightClub': 'https://flightclub.com/hovr-sonic-4-team-university-of-wisconsin-madison-3024293-600', 'stadiumGoods': ''}" +8f2e2b88-45fb-4fd9-a6ac-fe9f796a3661,GY5189,Reebok,Energen Plus 'White Gable Grey',Footwear White/Vector Navy/Gable Grey,men,Energen Plus,2022,2022-03-27,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/195/original/GY5189.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/195/original/GY5189.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/195/original/GY5189.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/energen-plus-white-gable-grey-gy5189', 'flightClub': 'https://flightclub.com/energen-plus-white-gable-grey-gy5189', 'stadiumGoods': ''}" +9c77c471-af76-4592-aceb-05da4a46d6f1,CQ9545-002,Nike,Wmns Legend Essential 2 'Black Off Noir',Black/Off Noir,women,Legend Essential 2,2022,2022-03-27,60,99,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/057/original/CQ9545_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/057/original/CQ9545_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/057/original/CQ9545_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-legend-essential-2-black-off-noir-cq9545-002', 'flightClub': 'https://flightclub.com/wmns-legend-essential-2-black-off-noir-cq9545-002', 'stadiumGoods': ''}" +a83bbc33-fd2f-40b7-9c9b-3b33112f26be,3023404-602,Under Armour,Infinity 3 GS 'Cool Pink White',Cool Pink/White,youth,Infinity 3,2022,2022-03-27,65,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/962/original/3023404_602.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/962/original/3023404_602.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/962/original/3023404_602.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/infinity-3-gs-cool-pink-white-3023404-602', 'flightClub': 'https://flightclub.com/infinity-3-gs-cool-pink-white-3023404-602', 'stadiumGoods': ''}" +a9d5e571-62c9-4967-a8b4-3585fbddb6d3,3024634-106,Under Armour,Assert 9 GS 'Halo Grey White',Halo Grey/White,youth,Assert,2022,2022-03-27,55,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/992/original/3024634_106.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/992/original/3024634_106.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/992/original/3024634_106.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-9-gs-halo-grey-white-3024634-106', 'flightClub': 'https://flightclub.com/assert-9-gs-halo-grey-white-3024634-106', 'stadiumGoods': ''}" +b90e92c8-44f3-4bd5-872d-f4d32a2e04fe,CD7784-007,Nike,Court Borough Mid 2 TD 'Grey Fog Mystic Navy',Grey Fog/Atomic Green/Flat Pewter/Mystic Navy,infant,Court Borough,2022,2022-03-27,55,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/048/original/CD7784_007.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/048/original/CD7784_007.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/048/original/CD7784_007.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/court-borough-mid-2-td-grey-fog-mystic-navy-cd7784-007', 'flightClub': 'https://flightclub.com/court-borough-mid-2-td-grey-fog-mystic-navy-cd7784-007', 'stadiumGoods': ''}" +bd6ce84a-c2b4-41a8-b03e-9b47e923582f,GV8325,Reebok,Wmns Energen Plus 'Floral',Chalk/Quartz Glow/Blue Slate,women,Energen Plus,2022,2022-03-27,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/135/original/GV8325.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/135/original/GV8325.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/135/original/GV8325.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-energen-plus-floral-gv8325', 'flightClub': 'https://flightclub.com/wmns-energen-plus-floral-gv8325', 'stadiumGoods': ''}" +cc129b50-c758-49ec-90ce-b83ffab91407,DB3553-003,Nike,Crater Impac TD 'Football Grey Game Royal',Football Grey/Wolf Grey/Rush Orange/Game Royal,infant,Crater Impact,2022,2022-03-27,60,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/071/original/DB3553_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/071/original/DB3553_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/071/original/DB3553_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/crater-impac-td-football-grey-game-royal-db3553-003', 'flightClub': 'https://flightclub.com/crater-impac-td-football-grey-game-royal-db3553-003', 'stadiumGoods': ''}" +d658dfe9-f24c-40e6-aa38-82a2955e2a06,3024331-101,Under Armour,Glyde RM GS 'White Cerise',White/Cerise,youth,Glyde,2022,2022-03-27,30,47,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/987/original/3024331_101.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/987/original/3024331_101.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/987/original/3024331_101.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/glyde-rm-gs-white-cerise-3024331-101', 'flightClub': 'https://flightclub.com/glyde-rm-gs-white-cerise-3024331-101', 'stadiumGoods': ''}" +d6f1d062-92bb-41ba-9cbc-228e927e5d26,GX2975,adidas,Wmns 4DFWD 'Shadow Navy Magic Grey',Cloud White/Shadow Navy/Magic Grey,women,4DFWD,2022,2022-03-27,200,270,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/164/original/GX2975.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/164/original/GX2975.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/164/original/GX2975.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-4dfwd-shadow-navy-magic-grey-gx2975', 'flightClub': 'https://flightclub.com/wmns-4dfwd-shadow-navy-magic-grey-gx2975', 'stadiumGoods': ''}" +d94ff69a-1e2a-4647-b64e-524b2e69a88b,GZ0628,adidas,Toy Story x RapidaZen I 'Buzz Lightyear',Cloud White/Semi Solar Lime/Active Purple,infant,RapidaZen,2022,2022-03-27,50,50,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/897/original/GZ0628.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/897/original/GZ0628.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/897/original/GZ0628.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/toy-story-x-rapidazen-i-buzz-lightyear-gz0628', 'flightClub': 'https://flightclub.com/toy-story-x-rapidazen-i-buzz-lightyear-gz0628', 'stadiumGoods': ''}" +da4492b1-3bd8-4bde-be7f-c6dc34995d35,106476-04,Puma,Future Z 1.2 FG AG 'Ultra Magenta Green Glare',Ultra Magenta/Black/Green Glare,men,Future Z 1.2,2022,2022-03-27,200,200,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/163/099/original/106476_04.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/163/099/original/106476_04.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/163/099/original/106476_04.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/future-z-1-2-fg-ag-ultra-magenta-green-glare-106476-04', 'flightClub': 'https://flightclub.com/future-z-1-2-fg-ag-ultra-magenta-green-glare-106476-04', 'stadiumGoods': ''}" +e00e502c-1230-4720-a1d8-337f7294413e,GV8324,Reebok,Wmns Energen Plus 'Black Orange Flare',Core Black/Canyon Coral/Orange Flare,women,Energen Plus,2022,2022-03-27,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/134/original/GV8324.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/134/original/GV8324.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/134/original/GV8324.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-energen-plus-black-orange-flare-gv8324', 'flightClub': 'https://flightclub.com/wmns-energen-plus-black-orange-flare-gv8324', 'stadiumGoods': ''}" +e114148f-1b87-4e28-a257-c50b47da875b,DC4068-001,Nike,Wmns Air Max Dawn 'Black Summit White',Black/Metallic Silver/Total Orange/Summit White,women,Air Max Dawn,2022,2022-03-27,110,190,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/075/original/DC4068_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/075/original/DC4068_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/075/original/DC4068_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-air-max-dawn-black-summit-white-dc4068-001', 'flightClub': 'https://flightclub.com/wmns-air-max-dawn-black-summit-white-dc4068-001', 'stadiumGoods': ''}" +e3618d11-415b-42e2-bef6-8b18e1f0f55c,GZ1597,Reebok,Classic Leather SP Big Kid 'Black Glass Blue',Core Black/Glass Blue/Footwear White,youth,Reebok Classic,2022,2022-03-27,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/207/original/GZ1597.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/207/original/GZ1597.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/207/original/GZ1597.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-leather-sp-big-kid-black-glass-blue-gz1597', 'flightClub': 'https://flightclub.com/classic-leather-sp-big-kid-black-glass-blue-gz1597', 'stadiumGoods': ''}" +e4978ef9-d3fe-4b04-9c61-63bbb2778518,3023404-400,Under Armour,Infinity 3 GS 'Midnight Navy',Midnight Navy/White,youth,Infinity 3,2022,2022-03-27,65,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/961/original/3023404_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/961/original/3023404_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/961/original/3023404_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/infinity-3-gs-midnight-navy-3023404-400', 'flightClub': 'https://flightclub.com/infinity-3-gs-midnight-navy-3023404-400', 'stadiumGoods': ''}" +e6444b67-b81e-446f-b2c8-d18af66f42d1,DA3199-006,Nike,Air Max 2021 GS 'Flat Pewter Siren Red',Flat Pewter/Medium Ash/White/Siren Red,youth,Air Max 2021,2022,2022-03-27,140,148,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/067/original/DA3199_006.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/067/original/DA3199_006.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/067/original/DA3199_006.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-2021-gs-flat-pewter-siren-red-da3199-006', 'flightClub': 'https://flightclub.com/air-max-2021-gs-flat-pewter-siren-red-da3199-006', 'stadiumGoods': ''}" +f275d527-062b-4fd9-978b-7fe33ba975c5,GW3144,adidas,Wmns Matchbreak Super 'White Gold Metallic',Cloud White/Cloud White/Gold Metallic,women,Matchbreak Super,2022,2022-03-27,70,137,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/145/original/GW3144.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/145/original/GW3144.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/145/original/GW3144.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-matchbreak-super-white-gold-metallic-gw3144', 'flightClub': 'https://flightclub.com/wmns-matchbreak-super-white-gold-metallic-gw3144', 'stadiumGoods': ''}" +f28a2412-24cc-4699-afa0-f6f2a4d77c93,GY5494,adidas,Vulc Raid3r 'Shadow Navy',Shadow Navy/Shadow Navy/Cloud White,men,Vulc Raid3r,2022,2022-03-27,60,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/199/original/GY5494.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/199/original/GY5494.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/199/original/GY5494.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/vulc-raid3r-shadow-navy-gy5494', 'flightClub': 'https://flightclub.com/vulc-raid3r-shadow-navy-gy5494', 'stadiumGoods': ''}" +f60f007f-ec58-4c37-a944-a2d712685423,3024634-300,Under Armour,Assert 9 GS 'Sky Blue',Sky Blue/White,youth,Assert,2022,2022-03-27,55,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/993/original/3024634_300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/993/original/3024634_300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/993/original/3024634_300.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-9-gs-sky-blue-3024634-300', 'flightClub': 'https://flightclub.com/assert-9-gs-sky-blue-3024634-300', 'stadiumGoods': ''}" +fd8e7daa-e0c4-493d-8d9c-f701b223af2e,GX8553,adidas,Wmns Stan Smith 'Always Original',Pulse Yellow/Pulse Yellow/Cloud White,women,Stan Smith,2022,2022-03-27,100,104,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/174/original/GX8553.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/174/original/GX8553.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/174/original/GX8553.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-stan-smith-always-original-gx8553', 'flightClub': 'https://flightclub.com/wmns-stan-smith-always-original-gx8553', 'stadiumGoods': ''}" +006ff49a-9bf1-4155-b034-605690f203e9,GW1620,adidas,NMD_R1 'Black Vivid Red',Core Black/Cloud White/Vivid Red,men,NMD Runner,2022,2022-03-26,150,220,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/143/original/GW1620.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/143/original/GW1620.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/143/original/GW1620.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/nmd_r1-black-vivid-red-gw1620', 'flightClub': 'https://flightclub.com/nmd_r1-black-vivid-red-gw1620', 'stadiumGoods': ''}" +0694fc14-eaaa-4ac9-883d-c73325b90b58,DQ9326-100,Nike,Nike Air Max 1 AMD La Ville Lumière (W),Summit White/Light Bone-Light Smoke Grey,women,Air Max 1,2022,2022-03-26,160,169,"Celebrating the shoe’s 35th anniversary, the Nike women’s Air Max 1 ‘La Ville-Lumière’ is a European exclusive that launched on March 26 as part of Nike’s 2022 Air Max Day festivities. The shoe’s name, which translates to ‘City of Lights,’ is a direct nod to Paris, home of the Centre Pompidou — the historic building with an inside-out architecture that inspired Tinker Hatfield to create the iconic visible Air-sole unit. The sneaker’s unique build combines a white mesh base with a grey nubuck mudguard and iridescent overlays at the midfoot and heel. Navy tongue tags display ‘3.26’ branding, while the translucent rubber outsole reveals printed text that includes the shoe’s moniker and release date.","{'360': ['https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382', 'https://images.stockx.com/360/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Images/Nike-Air-Max-1-AMD-La-Ville-Lumiere-W/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649185382'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/334/409/original/912431_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/334/409/original/912431_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/334/409/original/912431_00.png.png'}","{'stockX': 'https://stockx.com/nike-air-max-1-amd-la-ville-lumiere-w', 'goat': 'https://goat.com/sneakers/wmns-air-max-1-air-max-day-la-ville-lumiere-dq9326-100', 'flightClub': 'https://flightclub.com/wmns-air-max-1-air-max-day-la-ville-lumiere-dq9326-100', 'stadiumGoods': ''}" +0b0f627a-f850-4f7b-ae5c-b477ca9c0ac8,GY5274,adidas,adidas Adimatic Core Black,Core Black/Crystal White-Crystal White,men,Adimatic,2022,2022-03-26,80,163,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/066/731/090/original/GY5274.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/066/731/090/original/GY5274.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/066/731/090/original/GY5274.png.png'}","{'stockX': 'https://stockx.com/adidas-adimatic-core-black', 'goat': 'https://goat.com/sneakers/adimatic-black-crystal-white-gy5274', 'flightClub': 'https://flightclub.com/adimatic-black-crystal-white-gy5274', 'stadiumGoods': ''}" +0bc6f882-1b16-4c59-ac34-37bdb10f42ec,GY1759,adidas,adidas Yeezy Knit RNR Stone Carbon,Stone Carbon/Stone Carbon/Stone Carbon,men,Yeezy Knit Runner,2022,2022-03-26,200,225,,"{'360': ['https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667', 'https://images.stockx.com/360/adidas-Yeezy-Knit-RNR-Stone-Carbon/Images/adidas-Yeezy-Knit-RNR-Stone-Carbon/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648740667'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/528/300/original/886845_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/528/300/original/886845_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/528/300/original/886845_00.png.png'}","{'stockX': 'https://stockx.com/adidas-yeezy-knit-rnr-stone-carbon', 'goat': 'https://goat.com/sneakers/yeezy-knit-runner-stone-carbon-gy1759', 'flightClub': 'https://flightclub.com/yeezy-knit-runner-stone-carbon-gy1759', 'stadiumGoods': ''}" +12f5c66a-b9f8-4de9-8bae-874b013eacde,DQ5114-100,Nike,Vapor Edge Shark 'White Light Smoke Grey',White/Light Smoke Grey/Black,men,Vapor Edge,2022,2022-03-26,42,42,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/103/original/DQ5114_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/103/original/DQ5114_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/103/original/DQ5114_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/vapor-edge-shark-white-light-smoke-grey-dq5114-100', 'flightClub': 'https://flightclub.com/vapor-edge-shark-white-light-smoke-grey-dq5114-100', 'stadiumGoods': ''}" +1339e556-ddaf-46ff-b319-c30e5b5282e0,GW3121,adidas,Busenitz Vintage 'Black Pulse Lime',Core Black/Pulse Lime/Chalk White,men,Busenitz,2022,2022-03-26,85,149,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/144/original/GW3121.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/144/original/GW3121.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/144/original/GW3121.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/busenitz-vintage-black-pulse-lime-gw3121', 'flightClub': 'https://flightclub.com/busenitz-vintage-black-pulse-lime-gw3121', 'stadiumGoods': ''}" +15ac2462-5e58-4954-a65c-1e11a4f5656d,GZ3571,adidas,Wmns Astir 'Orbit Green Wonder White',Bliss/Wonder White/Light Gold Metallic,women,Astir,2022,2022-03-26,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/210/original/GZ3571.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/210/original/GZ3571.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/210/original/GZ3571.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-astir-orbit-green-wonder-white-gz3571', 'flightClub': 'https://flightclub.com/wmns-astir-orbit-green-wonder-white-gz3571', 'stadiumGoods': ''}" +242632b1-9b4f-444c-9902-7a9f299367b4,GY5188,Reebok,Energen Plus 'Cold Grey Court Blue',Cold Grey 2/Court Blue/Core Black,men,Energen Plus,2022,2022-03-26,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/194/original/GY5188.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/194/original/GY5188.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/194/original/GY5188.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/energen-plus-cold-grey-court-blue-gy5188', 'flightClub': 'https://flightclub.com/energen-plus-cold-grey-court-blue-gy5188', 'stadiumGoods': ''}" +2e24a3da-cf71-44c3-bdec-5915a29aaa8c,DN1803-500,Nike,Nike Air Max 1 SP Concepts Far Out (Regular Box),Wild Violet/Multi-Color-Sail,men,Air Max 1,2022,2022-03-26,230,289,,"{'360': ['https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958', 'https://images.stockx.com/360/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Images/Nike-Air-Max-1-SP-Concepts-Denim-Paisley/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648499958'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/693/191/original/914431_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/693/191/original/914431_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/693/191/original/914431_00.png.png'}","{'stockX': 'https://stockx.com/nike-air-max-1-sp-concepts-far-out-regular-box', 'goat': 'https://goat.com/sneakers/concepts-x-air-max-1-sp-far-out-dn1803-500', 'flightClub': 'https://flightclub.com/concepts-x-air-max-1-sp-far-out-dn1803-500', 'stadiumGoods': ''}" +384378c3-2652-4760-8003-5d77cb473954,GY5191,Reebok,Wmns Energen Plus 'White Cold Grey',Footwear White/Cold Grey/Acid Yellow,women,Energen Plus,2022,2022-03-26,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/196/original/GY5191.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/196/original/GY5191.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/196/original/GY5191.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-energen-plus-white-cold-grey-gy5191', 'flightClub': 'https://flightclub.com/wmns-energen-plus-white-cold-grey-gy5191', 'stadiumGoods': ''}" +4fea839c-0fbb-4145-ad08-e3a85fcbc451,CZ4665-003,Nike,Air Max Camden Slide GS 'Black White',Black/White,youth,Air Max Camden,2022,2022-03-26,45,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/062/original/CZ4665_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/062/original/CZ4665_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/062/original/CZ4665_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-camden-slide-gs-black-white-cz4665-003', 'flightClub': 'https://flightclub.com/air-max-camden-slide-gs-black-white-cz4665-003', 'stadiumGoods': ''}" +510dc983-bb72-4f34-a5b7-384cdbc8d54e,GX8730,adidas,Wmns Fluidflow 2.0 'Black Purple',Core Black/Core Black/Solar Yellow,women,Fluidflow,2022,2022-03-26,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/175/original/GX8730.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/175/original/GX8730.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/175/original/GX8730.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-fluidflow-2-0-black-purple-gx8730', 'flightClub': 'https://flightclub.com/wmns-fluidflow-2-0-black-purple-gx8730', 'stadiumGoods': ''}" +644c496d-85c8-4a50-965f-0bbc41bb7dcf,DB3553-102,Nike,Crater Impact TD 'White Aura',White/Aura/Summit White/Metallic Silver,infant,Crater Impact,2022,2022-03-26,60,60,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/073/original/DB3553_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/073/original/DB3553_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/073/original/DB3553_102.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/crater-impact-td-white-aura-db3553-102', 'flightClub': 'https://flightclub.com/crater-impact-td-white-aura-db3553-102', 'stadiumGoods': ''}" +69740237-f3cc-4541-8ee2-5e43750220c0,943345-021,Nike,Air Max 270 GS 'Black Green Strike',Black/Green Strike/White/Chrome,youth,Air Max 270,2022,2022-03-26,130,210,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/037/original/943345_021.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/037/original/943345_021.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/037/original/943345_021.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-270-gs-black-green-strike-943345-021', 'flightClub': 'https://flightclub.com/air-max-270-gs-black-green-strike-943345-021', 'stadiumGoods': ''}" +6f6723a4-70f0-45c9-a405-d86b653f7d87,GW1050,adidas,Adilette Clog 'Camo',Core Black/Core Black/Carbon,men,Adilette Clog,2022,2022-03-26,45,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/142/original/GW1050.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/142/original/GW1050.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/142/original/GW1050.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/adilette-clog-camo-gw1050', 'flightClub': 'https://flightclub.com/adilette-clog-camo-gw1050', 'stadiumGoods': ''}" +7718005e-bde7-4254-8283-ac6cb570592a,GY2921,adidas,Stella McCartney x Wmns SolarGlide 'Crew Orange White',Crew Orange/Active Orange/Cloud White,women,SolarGlide,2022,2022-03-26,200,249,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/188/original/GY2921.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/188/original/GY2921.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/188/original/GY2921.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/stella-mccartney-x-wmns-solarglide-crew-orange-white-gy2921', 'flightClub': 'https://flightclub.com/stella-mccartney-x-wmns-solarglide-crew-orange-white-gy2921', 'stadiumGoods': ''}" +834ff3c0-c62c-4c2e-a453-fcddd233cecb,DD8476-003,Nike,Revolution 6 FlyEase Next Nature Extra Wide 'Triple Black',Black/Dark Smoke Grey/Black/Black,men,Revolution 6,2022,2022-03-26,65,65,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/816/original/DD8476_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/816/original/DD8476_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/816/original/DD8476_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/revolution-6-flyease-next-nature-extra-wide-black-white-dd8476-003', 'flightClub': 'https://flightclub.com/revolution-6-flyease-next-nature-extra-wide-black-white-dd8476-003', 'stadiumGoods': ''}" +85e392bb-d0c9-456d-8006-6cd2966bb7f2,DR0448-100,Nike,Nike Air Max 1 Premium Blueprint,White/Dark Marina Blue/Leche Blue,men,Air Max 1,2022,2022-03-26,160,199,"Launching exclusively in North America as part of Nike’s 2022 Air Max Day lineup, the Air Max 1 Premium ‘Blueprint’ celebrates the shoe’s 35th anniversary with a theme centered around the silhouette’s international appeal. The upper combines a white mesh base with a grey leather saddle and powder blue synthetic suede on the mudguard and heel overlay. The latter is accented with a Nike Air logo embroidered atop an embossed globe graphic. Additional branding elements include mismatched Swooshes and Nike Air Max tongue tags, all of which are embellished with a grid-like pattern. Underfoot, a translucent blue rubber outsole provides optimal grip.","{'360': ['https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532', 'https://images.stockx.com/360/Nike-Air-Max-1-Premium-Blueprint/Images/Nike-Air-Max-1-Premium-Blueprint/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648661532'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/393/489/original/910162_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/393/489/original/910162_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/393/489/original/910162_00.png.png'}","{'stockX': 'https://stockx.com/nike-air-max-1-premium-blueprint', 'goat': 'https://goat.com/sneakers/air-max-1-premium-white-dark-marina-blue-dr0448-100', 'flightClub': 'https://flightclub.com/air-max-1-premium-white-dark-marina-blue-dr0448-100', 'stadiumGoods': ''}" +91614c0a-71c9-43e2-9350-1ddb1ab164da,1014A165-405,ASICS,GT 1000 9 TS 'Grand Shark Peacoat',Grand Shark/Peacoat,infant,GT 1000,2022,2022-03-26,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/638/original/1014A165_405.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/638/original/1014A165_405.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/638/original/1014A165_405.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gt-1000-9-ts-grand-shark-peacoat-1014a165-405', 'flightClub': 'https://flightclub.com/gt-1000-9-ts-grand-shark-peacoat-1014a165-405', 'stadiumGoods': ''}" +a307acd1-9ddb-4c65-b51d-42c7ef89412b,1204A019-100,ASICS,Japan S PS 'White Black',White/Black,youth,Japan,2022,2022-03-26,50,82,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/737/original/1204A019_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/737/original/1204A019_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/737/original/1204A019_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/japan-s-ps-white-black-1204a019-100', 'flightClub': 'https://flightclub.com/japan-s-ps-white-black-1204a019-100', 'stadiumGoods': ''}" +c3771eca-efae-4de8-a17f-204c6ae7697f,H68931,Reebok,Energen Plus 'Black Cold Grey',Core Black/Cold Grey 7/Core Black,men,Energen Plus,2022,2022-03-26,70,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/225/original/H68931.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/225/original/H68931.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/225/original/H68931.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/energen-plus-black-cold-grey-h68931', 'flightClub': 'https://flightclub.com/energen-plus-black-cold-grey-h68931', 'stadiumGoods': ''}" +c95b33c0-558a-4a85-8e74-f164185c34b5,GZ6202,adidas,adidas Adimatic Green,Green/Crystal White-Crystal White,men,Adimatic,2022,2022-03-26,80,124,,"{'360': ['https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377', 'https://images.stockx.com/360/adidas-Adimatic-Green/Images/adidas-Adimatic-Green/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820377'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/066/731/093/original/GZ6202.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/066/731/093/original/GZ6202.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/066/731/093/original/GZ6202.png.png'}","{'stockX': 'https://stockx.com/adidas-adimatic-green', 'goat': 'https://goat.com/sneakers/adimatic-green-crystal-white-gz6202', 'flightClub': 'https://flightclub.com/adimatic-green-crystal-white-gz6202', 'stadiumGoods': ''}" +cb9e32ca-00d5-4f0c-8db5-492137df576e,DQ8656-133,Nike,Nike Air Max 1 Premium Wabi-Sabi,Tan/Olive/Sail/Brown,men,Air Max 1,2022,2022-03-26,150,210,"Launching exclusively in Asia Pacific and Latin America as part of Nike’s 2022 Air Max Day lineup, the Nike Air Max 1 ‘Wabi-Sabi’ gets its name from the Japanese philosophy of finding beauty in an object’s flaws and imperfections. Exposed contrast stitching distinguishes the upper, featuring an off-white canvas base with a green Swoosh and a midfoot overly in pink leather. Asymmetrical color blocking in subdued shades of brown and olive is applied to the split mudguard and heel overlay, the latter accented with Nike’s playful smiley face. ‘XXXV’ is embroidered in red stitching on the lateral heel — nodding to the shoe’s 35th anniversary — while interchangeable tongue tags provide customized branding. The sneaker rides on a cream-colored midsole, finished with a crackle graphic and supported by a gum rubber outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/225/290/original/911478_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/225/290/original/911478_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/225/290/original/911478_00.png.png'}","{'stockX': 'https://stockx.com/nike-air-max-1-premium-wabi-sabi', 'goat': 'https://goat.com/sneakers/air-max-1-wabi-sabi-dq8656-133', 'flightClub': 'https://flightclub.com/air-max-1-wabi-sabi-dq8656-133', 'stadiumGoods': ''}" +dcb10514-efab-4953-87cf-4fcccf823388,GX0386,Reebok,Club C Revenge 'White Bold Purple',Footwear White/Collegiate Gold/Bold Purple,men,Club C,2022,2022-03-26,80,79,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/160/original/GX0386.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/160/original/GX0386.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/160/original/GX0386.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/club-c-revenge-white-bold-purple-gx0386', 'flightClub': 'https://flightclub.com/club-c-revenge-white-bold-purple-gx0386', 'stadiumGoods': ''}" +dd2bd7a5-1f3d-4890-b50e-f4347e56a3d1,GZ1598,Reebok,Classic Leather SP Big Kid 'Vector Red Pink Glow',Vector Red/Pink Glow/Vector Red,youth,Reebok Classic,2022,2022-03-26,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/209/original/GZ1598.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/209/original/GZ1598.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/209/original/GZ1598.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-leather-sp-big-kid-vector-red-pink-glow-gz1598', 'flightClub': 'https://flightclub.com/classic-leather-sp-big-kid-vector-red-pink-glow-gz1598', 'stadiumGoods': ''}" +f984d4b6-66c9-48fd-bbe1-7bce165563ed,GY5426,adidas,Disney x FortaRun J 'Snow White',Hazy Sky/Cloud White/Turbo,youth,FortaRun,2022,2022-03-26,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/198/original/GY5426.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/198/original/GY5426.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/198/original/GY5426.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/disney-x-fortarun-j-snow-white-gy5426', 'flightClub': 'https://flightclub.com/disney-x-fortarun-j-snow-white-gy5426', 'stadiumGoods': ''}" +0db0b198-09e4-4ec3-a60b-7cc00417ed66,GW4993,Reebok,Maison Margiela x Classic Leather 'Memory Of - White',Footwear White/Black/Footwear White,men,Reebok Classic,2022,2022-03-25,400,384,"The Maison Margiela x Reebok Classic Leather ‘White’ delivers a modern and deconstructed take on the retro ‘80s sneaker. Inspired by the French fashion house’s signature ‘Memory Of’ concept, the monochrome white leather upper is stripped of familiar components. The leather side stripes and eyestay have been removed, revealing a felt liner and telltale punch-holes that once held stitching. The heel overlay has been peeled away, while the back tab appears to have been torn off, leaving behind a tattered remnant. Dual Margiela and Reebok branding adorns the sockliner and a woven tongue tag that’s been slashed in half.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/094/654/original/913260_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/094/654/original/913260_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/094/654/original/913260_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/maison-margiela-x-classic-leather-memory-of-white-gw4993', 'flightClub': 'https://flightclub.com/maison-margiela-x-classic-leather-memory-of-white-gw4993', 'stadiumGoods': ''}" +127a41da-efe3-489f-a6d1-887e0f00a0e1,383113-01,Puma,Wmns Kosmo Rider 'New Realities',White/Fizzy Lime,women,Kosmo Rider,2022,2022-03-25,90,148,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/067/979/442/original/383113_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/067/979/442/original/383113_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/067/979/442/original/383113_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-kosmo-rider-new-realities-383113-01', 'flightClub': 'https://flightclub.com/wmns-kosmo-rider-new-realities-383113-01', 'stadiumGoods': ''}" +153fd899-fee7-4f91-b954-63024fd8ef10,GX4043,adidas,Vice Golf x Stan Smith 'Signal Green',Signal Green/Signal Green/Core Black,men,Stan Smith,2022,2022-03-25,120,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/225/298/original/917183_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/225/298/original/917183_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/225/298/original/917183_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/vice-golf-x-stan-smith-signal-green-gx4043', 'flightClub': 'https://flightclub.com/vice-golf-x-stan-smith-signal-green-gx4043', 'stadiumGoods': ''}" +25649b47-395a-4a95-af04-7a7e4115edaf,GY0587,Reebok,Reebok Question Mid Power Rangers Megazord (TD),Black/Silver Metallic/Vector Red,toddler,Question,2022,2022-03-25,55,79,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/894/original/GY0587.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/894/original/GY0587.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/894/original/GY0587.png.png'}","{'stockX': 'https://stockx.com/reebok-question-mid-power-rangers-megazord-td', 'goat': 'https://goat.com/sneakers/power-rangers-x-question-mid-toddler-megazord-gy0587', 'flightClub': 'https://flightclub.com/power-rangers-x-question-mid-toddler-megazord-gy0587', 'stadiumGoods': ''}" +2657a90c-1abe-4885-9b7a-780b08769953,323419-063,Jordan,Jordan 6 Rings GS 'His Airness',Black/White/Yellow Strike/University Red,youth,Jordan 6 Rings,2022,2022-03-25,130,161,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/010/original/323419_063.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/010/original/323419_063.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/010/original/323419_063.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jordan-6-rings-gs-his-airness-323419-063', 'flightClub': 'https://flightclub.com/jordan-6-rings-gs-his-airness-323419-063', 'stadiumGoods': ''}" +283ca244-7a68-4e29-aac4-8ab9352ddf75,GW5013,Reebok,Maison Margiela x Club C 'Memory Of - White',Footwear White/Black/Footwear White,men,Club C,2022,2022-03-25,400,419,"The Maison Margiela x Reebok Club C ‘White’ features a deconstructed design inspired by the French fashion house’s ‘Memory Of’ concept. Traditional components of the white leather upper have been removed, including the heel tab, eyestay, and side stripes. What’s left behind are felt liners, tattered remnants, and frayed stitching, prompting the visual recollection of pieces that are no longer materially existent. Atop the tongue, a woven Reebok tag is sliced in half, revealing a Margiela label underneath. The sneaker rides on a durable rubber cupsole with an exposed EVA wedge on the medial side.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/934/657/original/913263_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/934/657/original/913263_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/934/657/original/913263_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/maison-margiela-x-club-c-memory-of-white-gw5013', 'flightClub': 'https://flightclub.com/maison-margiela-x-club-c-memory-of-white-gw5013', 'stadiumGoods': ''}" +2d5c30ef-75a1-419f-9338-648efc51b708,GX3682,Reebok,Power Rangers x Classic Leather Little Kid 'Major Funky',Chalk/Footwear White/Tin Grey,youth,Reebok Classic,2022,2022-03-25,65,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/589/original/GX3682.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/589/original/GX3682.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/589/original/GX3682.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/power-rangers-x-classic-leather-little-kid-major-funky-gx3682', 'flightClub': 'https://flightclub.com/power-rangers-x-classic-leather-little-kid-major-funky-gx3682', 'stadiumGoods': ''}" +3177167b-7b28-4459-8f32-69f1fa386862,GZ4711,adidas,adidas Samba Vegan Christmas,Cloud White/Shadow Navy/Vivid Red,men,adidas Samba Vegan,2022,2022-03-25,90,90,,"{'360': [], 'original': 'https://images.stockx.com/images/adidas-Samba-Vegan-Christmas.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1644525410', 'small': 'https://images.stockx.com/images/adidas-Samba-Vegan-Christmas.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1644525410', 'thumbnail': 'https://images.stockx.com/images/adidas-Samba-Vegan-Christmas.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1644525410'}","{'stockX': 'https://stockx.com/adidas-samba-vegan-christmas', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +40eab459-501b-48d9-92f6-74671b0bbce7,GW5014,Reebok,Maison Margiela x Classic Leather 'Memory Of - Black',Black/Footwear White/Black,men,Reebok Classic,2022,2022-03-25,400,399,"The Maison Margiela x Reebok Classic Leather ‘Black’ reinterprets the classic silhouette via the French luxury house’s ‘Memory Of’ concept. A stealthy one-note finish is applied to the leather upper, which has been stripped of the eyestay, side stripes, heel overlay, and back tab. The memory of those familiar elements is visually encoded in what’s left behind: frayed threads, exposed felt liners, tattered remnants, and leftover punch-holes that once held stitching. Atop the tongue, a woven Reebok tag is slashed in half, revealing a Margiela label underneath. The sneaker rests on a matching black EVA midsole and durable rubber outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/205/590/original/GW5014.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/205/590/original/GW5014.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/205/590/original/GW5014.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/maison-margiela-x-classic-leather-memory-of-black-gw5014', 'flightClub': 'https://flightclub.com/maison-margiela-x-classic-leather-memory-of-black-gw5014', 'stadiumGoods': ''}" +66cca7dc-c3c4-4f3c-81f9-1d01c902c73c,GW8632,Reebok,Power Rangers x Classic Leather Big Kid 'Major Funky',Chalk/Footwear White/Tin Grey,youth,Reebok Classic,2022,2022-03-25,70,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/472/original/GW8632.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/472/original/GW8632.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/472/original/GW8632.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/power-rangers-x-classic-leather-big-kid-major-funky-gw8632', 'flightClub': 'https://flightclub.com/power-rangers-x-classic-leather-big-kid-major-funky-gw8632', 'stadiumGoods': ''}" +6b8cc749-555d-4f07-9176-a85af9f2488a,3024765-404,Under Armour,3Z5 GS 'Royal Taxi',Royal/Taxi,youth,3Z5,2022,2022-03-25,70,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/997/original/3024765_404.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/997/original/3024765_404.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/997/original/3024765_404.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/3z5-gs-royal-taxi-3024765-404', 'flightClub': 'https://flightclub.com/3z5-gs-royal-taxi-3024765-404', 'stadiumGoods': ''}" +6d85ccf7-17e9-4de6-a2fc-799ad574232d,VN0A4BVF172,Vans,Vans Old Skool VLT LX Krink Black,Black/White/Yellow,men,Old Skool,2022,2022-03-25,95,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/790/original/VN0A4BVF172.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/790/original/VN0A4BVF172.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/790/original/VN0A4BVF172.png.png'}","{'stockX': 'https://stockx.com/vans-old-skool-vlt-lx-krink-black', 'goat': 'https://goat.com/sneakers/krink-x-vault-old-skool-vlt-lx-black-vn0a4bvf172', 'flightClub': 'https://flightclub.com/krink-x-vault-old-skool-vlt-lx-black-vn0a4bvf172', 'stadiumGoods': ''}" +6eba9224-8fc3-4727-9586-c3ef44886185,VN0A4CS4176,Vans,KRINK x Vault Authentic VLT LX 'Medium Grey',,men,Authentic,2022,2022-03-25,90,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/792/original/VN0A4CS4176.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/792/original/VN0A4CS4176.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/792/original/VN0A4CS4176.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/krink-x-vault-authentic-vlt-lx-medium-grey-vn0a4cs4176', 'flightClub': 'https://flightclub.com/krink-x-vault-authentic-vlt-lx-medium-grey-vn0a4cs4176', 'stadiumGoods': ''}" +70fce039-2871-44cd-bec9-aaae28209e6d,GX1385,Reebok,Reebok Alien Stomper Mountain Research Black,Core Black/Footwear White/Core Black,men,Alien Stomper,2022,2022-03-25,180,127,"The Mountain Research x Reebok Alien Stomper ‘Black White’ delivers the Japanese label’s sleek interpretation of the sneaker that made its debut in ‘Aliens,’ the classic sci-fi action film directed by James Cameron. The black leather upper is secured with an adjustable ankle strap and a larger midfoot strap that replaces traditional lace closure. The Mountain Research logo appears on the woven tongue tag, while the back heel displays printed text that reads ‘Never Been to the Moon.’ The sneaker sits atop a cushy die-cut EVA midsole, reinforced underfoot by a high-abrasion rubber outsole.","{'360': ['https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797', 'https://images.stockx.com/360/Reebok-Alien-Stomper-Mountain-Research-Black/Images/Reebok-Alien-Stomper-Mountain-Research-Black/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234797'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/067/979/449/original/GX1385.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/067/979/449/original/GX1385.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/067/979/449/original/GX1385.png.png'}","{'stockX': 'https://stockx.com/reebok-alien-stomper-mountain-research-black', 'goat': 'https://goat.com/sneakers/mountain-research-x-alien-stomper-black-white-gx1385', 'flightClub': 'https://flightclub.com/mountain-research-x-alien-stomper-black-white-gx1385', 'stadiumGoods': ''}" +7ba8fd91-523e-4bf6-ba82-1f24b48139f2,GX4042,adidas,Vice Golf x Stan Smith 'Solar Red',Solar Red/Solar Red/Core Black,men,Stan Smith,2022,2022-03-25,120,139,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/725/original/GX4042.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/725/original/GX4042.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/725/original/GX4042.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/vice-golf-x-stan-smith-solar-red-gx4042', 'flightClub': 'https://flightclub.com/vice-golf-x-stan-smith-solar-red-gx4042', 'stadiumGoods': ''}" +8c789fb9-ec24-4974-9a8c-227e150adf24,GW5012,Reebok,Maison Margiela x Club C 'Memory Of - Black',Black/Footwear White/Black,men,Club C,2022,2022-03-25,400,420,"The Maison Margiela x Reebok Club C ‘Black’ is taken from a capsule collection centered around the French luxury brand’s ‘Memory Of’ concept, which explores deconstruction through the excision of familiar elements. Here, the retro silhouette carries a monochrome black leather upper that’s been stripped of the eyestay, side stripes, and heel tab, leaving behind felt liners, exposed stitching, and tattered remnants. A woven Margiela tongue tag is revealed under a Reebok tag that appears to have been slashed in half. Anchoring the sneaker is a matching black rubber cupsole, fitted with an EVA wedge for lightweight cushioning.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/205/588/original/GW5012.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/205/588/original/GW5012.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/205/588/original/GW5012.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/maison-margiela-x-club-c-memory-of-black-gw5012', 'flightClub': 'https://flightclub.com/maison-margiela-x-club-c-memory-of-black-gw5012', 'stadiumGoods': ''}" +a432a489-2c0e-4ffa-a870-54677f2c7bec,GW0782,Reebok,Reebok Instapump Fury 94 Power Rangers Rita Repulsa,Black/Rustic Clay/Gold Metallic,men,InstaPump Fury,2022,2022-03-25,200,147,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/061/100/032/original/815465_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/061/100/032/original/815465_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/061/100/032/original/815465_00.png.png'}","{'stockX': 'https://stockx.com/reebok-instapump-fury-94-power-rangers-rita-repulsa', 'goat': 'https://goat.com/sneakers/power-rangers-x-instapump-fury-rita-repulsa-gw0782', 'flightClub': 'https://flightclub.com/power-rangers-x-instapump-fury-rita-repulsa-gw0782', 'stadiumGoods': ''}" +a6cf4983-d9a5-40c7-ac6f-96330eddc786,GX4044,adidas,Vice Golf x Stan Smith 'White Tint',White Tint/White Tint/Grey One,men,Stan Smith,2022,2022-03-25,120,122,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/334/338/original/917182_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/334/338/original/917182_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/334/338/original/917182_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/vice-golf-x-stan-smith-white-tint-gx4044', 'flightClub': 'https://flightclub.com/vice-golf-x-stan-smith-white-tint-gx4044', 'stadiumGoods': ''}" +bb0d68f4-0e48-4e40-b187-efa43b7b3be2,VN0A4BVF173,Vans,Vans Old Skool VLT LX Krink Medium Blue,Blue/Navy/White,men,Old Skool,2022,2022-03-25,95,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/791/original/VN0A4BVF173.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/791/original/VN0A4BVF173.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/791/original/VN0A4BVF173.png.png'}","{'stockX': 'https://stockx.com/vans-old-skool-vlt-lx-krink-medium-blue', 'goat': 'https://goat.com/sneakers/krink-x-vault-old-skool-vlt-lx-medium-blue-vn0a4bvf173', 'flightClub': 'https://flightclub.com/krink-x-vault-old-skool-vlt-lx-medium-blue-vn0a4bvf173', 'stadiumGoods': ''}" +c3f5036f-2503-4881-b879-c3d11a9d1f49,GX2978,adidas,4DFWD 'Flash Orange',Flash Orange/Grey Six/Cloud White,men,4DFWD,2022,2022-03-25,200,270,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/165/original/GX2978.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/165/original/GX2978.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/165/original/GX2978.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/4dfwd-flash-orange-gx2978', 'flightClub': 'https://flightclub.com/4dfwd-flash-orange-gx2978', 'stadiumGoods': ''}" +d23f2b18-22cc-4dcd-b2aa-6a3fb55b9df2,1014A234-400,ASICS,Pre Excite 9 PS 'Lake Drive',Lake Drive/White,youth,Pre Excite,2022,2022-03-25,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/683/original/1014A234_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/683/original/1014A234_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/683/original/1014A234_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/pre-excite-9-ps-lake-drive-1014a234-400', 'flightClub': 'https://flightclub.com/pre-excite-9-ps-lake-drive-1014a234-400', 'stadiumGoods': ''}" +d3c31b17-a8af-4d8e-b78a-ae72d3b004b7,DD1503-001,Nike,Wmns Dunk Low 'Easter',Football Grey/Atmosphere/Doll,women,Dunk,2022,2022-03-25,110,155,"The Nike women’s Dunk Low ‘Easter’ treats the classic silhouette to a spring-ready makeover rife with pastel hues. The low-top sports a smooth leather build, featuring a powder blue base with lavender overlays and a soft pink Swoosh. A woven Nike tag decorates a lightly padded nylon tongue, which pairs with a low-cut collar to deliver a comfortable fit. The sneaker rests on a durable rubber cupsole, complete with a pivot-point rubber outsole designed to grip the hardwood.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/080/original/DD1503_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/080/original/DD1503_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/080/original/DD1503_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-dunk-low-easter-dd1503-001', 'flightClub': 'https://flightclub.com/wmns-dunk-low-easter-dd1503-001', 'stadiumGoods': ''}" +d8a7b6c9-abd9-45fc-8a8a-18d796742bd1,GY0588,Reebok,Power Rangers x Question Mid Big Kid 'Megazord Battle Mode!',Black/Silver Metallic/Vector Red,youth,Question,2022,2022-03-25,110,180,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/749/original/GY0588.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/749/original/GY0588.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/749/original/GY0588.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/power-rangers-x-question-mid-big-kid-megazord-battle-mode-gy0588', 'flightClub': 'https://flightclub.com/power-rangers-x-question-mid-big-kid-megazord-battle-mode-gy0588', 'stadiumGoods': ''}" +db17a354-b130-4886-969a-46a0ccd7097d,DQ8596-100,Nike,Nike Blazer Mid 77 Athletic Club White Marina (W),Sail/White/Hyper Royal/Marina,women,Blazer,2022,2022-03-25,110,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/343/original/DQ8596_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/343/original/DQ8596_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/343/original/DQ8596_100.png.png'}","{'stockX': 'https://stockx.com/nike-blazer-mid-77-athletic-club-white-marina-w', 'goat': 'https://goat.com/sneakers/wmns-blazer-mid-77-athletic-club-dq8596-100', 'flightClub': 'https://flightclub.com/wmns-blazer-mid-77-athletic-club-dq8596-100', 'stadiumGoods': ''}" +e06dee00-8121-4d7a-9b73-f9f2d58d0dda,GY0589,Reebok,Reebok Question Mid Power Rangers Megazord (PS),Black/Silver Metallic/Vector Red,preschool,Reebok Question Mid,2022,2022-03-25,85,85,,"{'360': [], 'original': 'https://images.stockx.com/images/Reebok-Question-Mid-Power-Rangers-Megazord-PS.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1623474204', 'small': 'https://images.stockx.com/images/Reebok-Question-Mid-Power-Rangers-Megazord-PS.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1623474204', 'thumbnail': 'https://images.stockx.com/images/Reebok-Question-Mid-Power-Rangers-Megazord-PS.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1623474204'}","{'stockX': 'https://stockx.com/reebok-question-mid-power-rangers-megazord-ps', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +e91fe6af-ecd0-4720-a30c-40ffc10e1c41,DH7139-100,Jordan,Air Jordan 3 Retro SE 'Muslin',Muslin/University Red/Cement Grey/Sail,men,Air Jordan 3,2022,2022-03-25,210,242,"The Air Jordan 3 Retro SE ‘Muslin’ updates Tinker Hatfield’s original 1988 design with a recrafted build. In lieu of traditional leather, the upper is constructed from Muslin canvas with forefoot and heel overlays in Cement Grey suede. University Red accents land on the sneaker’s lower eyelets, as well as Jumpman branding hits atop the tongue and molded heel panel. The sneaker rides on an off-white polyurethane midsole with visible Air-sole cushioning in the heel. Underfoot, a durable grey rubber outsole provides grippy traction.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/293/432/original/878623_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/293/432/original/878623_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/293/432/original/878623_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-3-retro-se-canvas-dh7139-100', 'flightClub': 'https://flightclub.com/air-jordan-3-retro-se-canvas-dh7139-100', 'stadiumGoods': ''}" +059a53f1-3728-4b64-966e-0805574cb9c4,A01794C,Converse,Converse Chuck Taylor All-Star 70 Hi Comme des Garcons PLAY Egret Red Midsole,Pristine/Red/Egret,unisex,Chuck 70,2022,2022-03-24,150,156,"The Comme des Garçons Play x Converse Chuck 70 High ‘Pristine Red’ updates the heritage silhouette with ultra-colorful tooling. The upper is constructed from cream-colored canvas with a tonal rubber toe cap and a contrasting black webbing heel strip. CDG Play’s iconic heart-and-eyes logo peers out from the lateral ankle, while a traditional All Star patch adorns the opposite side. The high-top rides on a crimson rubber midsole, featuring the Chuck 70’s signature glossy sidewalls and white pinstripe detailing.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/094/762/original/918755_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/094/762/original/918755_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/094/762/original/918755_00.png.png'}","{'stockX': 'https://stockx.com/converse-chuck-taylor-all-star-70-hi-comme-des-garcons-play-egret-red-midsole', 'goat': 'https://goat.com/sneakers/comme-des-garcons-play-x-chuck-70-high-pristine-red-a01794c', 'flightClub': 'https://flightclub.com/comme-des-garcons-play-x-chuck-70-high-pristine-red-a01794c', 'stadiumGoods': ''}" +08084ca4-66fb-4830-9226-d303a89bce3f,DD9315-600,Jordan,Jordan 1 Retro Low Golf Chicago,Varsity Red/Black-White,men,Air Jordan 1,2022,2022-03-24,140,176,"The Air Jordan 1 Low Golf ‘Chicago’ brings iconic basketball style to the fairway. The low-top carries a leather upper in a classic Chicago-inspired palette, highlighted by a crisp white base with a contrasting black Swoosh and Varsity Red overlays. A stitched Wings logo embellishes the heel tab, while the woven tongue tag displays a Jumpman logo captioned with the word ‘Golf.’ Underfoot, the crimson rubber outsole features an integrated traction pattern for maximum grip during rotational movements.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/067/269/450/original/889977_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/067/269/450/original/889977_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/067/269/450/original/889977_00.png.png'}","{'stockX': 'https://stockx.com/air-jordan-1-retro-low-golf-chicago', 'goat': 'https://goat.com/sneakers/air-jordan-1-low-golf-chicago-dd9315-600', 'flightClub': 'https://flightclub.com/air-jordan-1-low-golf-chicago-dd9315-600', 'stadiumGoods': ''}" +0bdd8d00-c0fc-4b60-a39c-dc1781754e66,3024981-100,Under Armour,Charged Rogue 3 GS 'Grey Cruise Gold',Mod Grey/Cruise Gold,youth,Charged Rogue,2022,2022-03-24,65,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/826/original/3024981_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/826/original/3024981_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/826/original/3024981_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-rogue-3-gs-grey-cruise-gold-3024981-100', 'flightClub': 'https://flightclub.com/charged-rogue-3-gs-grey-cruise-gold-3024981-100', 'stadiumGoods': ''}" +0e621ea3-60d2-4429-a157-09a60e30c06d,DJ6606-700,Nike,Vista Sandal 'Wheat Grass',Wheat Grass/Olive Grey/Medium Ash/Black,men,Vista Sandal,2022,2022-03-24,55,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/454/original/DJ6606_700.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/454/original/DJ6606_700.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/454/original/DJ6606_700.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/vista-sandal-wheat-grass-dj6606-700', 'flightClub': 'https://flightclub.com/vista-sandal-wheat-grass-dj6606-700', 'stadiumGoods': ''}" +0e7c670d-8a06-4476-9b65-bae95d52e8ec,3025050-001,Under Armour,Marathon Key 5 Sandal GS 'Black Stealth Grey',Black/Stealth Grey,youth,Marathon Key 5 Sandal,2022,2022-03-24,32,32,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/863/original/3025050_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/863/original/3025050_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/863/original/3025050_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/marathon-key-5-sandal-gs-black-stealth-grey-3025050-001', 'flightClub': 'https://flightclub.com/marathon-key-5-sandal-gs-black-stealth-grey-3025050-001', 'stadiumGoods': ''}" +1187ff34-1230-48c3-9a04-1f2b4c484207,GW0852,Reebok,Wmns DayStart OnLux 'Pure Grey Atomic Pink',Pure Grey 2/Atomic Pink/Footwear White,women,DayStart,2022,2022-03-24,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/470/original/GW0852.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/470/original/GW0852.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/470/original/GW0852.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-daystart-onlux-pure-grey-atomic-pink-gw0852', 'flightClub': 'https://flightclub.com/wmns-daystart-onlux-pure-grey-atomic-pink-gw0852', 'stadiumGoods': ''}" +1659aeef-c278-4fe3-b665-3dd0aeef508d,A01796C,Converse,Converse Chuck Taylor All-Star 70 Ox Comme des Garcons PLAY Egret Red Midsole,Pristine/Red/Egret,unisex,Chuck 70,2022,2022-03-24,150,159,"The Comme des Garçons Play x Converse Chuck 70 Low ‘Pristine Red’ gives the heritage silhouette a bold new design, highlighted by a solid crimson midsole — a first in the collaborative series that began in 2009. The eye-catching hue is applied to the Chuck 70’s signature glossy sidewalls, accented with off-white pinstripe detailing and a Converse All Star license plate. The upper is built with cream-colored canvas and features CDG Play’s signature eyes-and-heart logo on the lateral side.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/277/659/original/918760_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/277/659/original/918760_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/277/659/original/918760_00.png.png'}","{'stockX': 'https://stockx.com/converse-chuck-taylor-all-star-70-ox-comme-des-garcons-play-egret-red-midsole', 'goat': 'https://goat.com/sneakers/comme-des-garcons-play-x-chuck-70-low-pristine-red-a01796c', 'flightClub': 'https://flightclub.com/comme-des-garcons-play-x-chuck-70-low-pristine-red-a01796c', 'stadiumGoods': ''}" +1fe22f93-96e1-42a0-88f1-4b1e073d838a,GX7226,Reebok,Freestyle High Toddler 'Triple White',Footwear White/Footwear White/Footwear White,infant,Freestyle,2022,2022-03-24,40,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/481/original/GX7226.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/481/original/GX7226.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/481/original/GX7226.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freestyle-high-toddler-triple-white-gx7226', 'flightClub': 'https://flightclub.com/freestyle-high-toddler-triple-white-gx7226', 'stadiumGoods': ''}" +22fc983c-2a1c-4f3d-99dd-d6afd2f48fbe,GX7230,Reebok,Freestyle High Toddler 'Black Pure Grey',Core Black/Core Black/Pure Grey 5,infant,Freestyle,2022,2022-03-24,40,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/483/original/GX7230.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/483/original/GX7230.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/483/original/GX7230.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freestyle-high-toddler-black-pure-grey-gx7230', 'flightClub': 'https://flightclub.com/freestyle-high-toddler-black-pure-grey-gx7230', 'stadiumGoods': ''}" +28738725-4214-42ec-a221-079707bcb1f4,3024987-600,Under Armour,Charged Pursuit 3 GS 'Red Black',Red/Black,youth,Charged Pursuit,2022,2022-03-24,58,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/837/original/3024987_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/837/original/3024987_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/837/original/3024987_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-gs-red-black-3024987-600', 'flightClub': 'https://flightclub.com/charged-pursuit-3-gs-red-black-3024987-600', 'stadiumGoods': ''}" +2890dcb1-ba80-4065-b1f0-f12e86c648bb,GX0270,Reebok,Floatride Energy 4 'Chalk Pure Grey Gum',Chalk/Pure Grey 3/Reebok Rubber Gum-04,men,Floatride,2022,2022-03-24,110,127,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/474/original/GX0270.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/474/original/GX0270.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/474/original/GX0270.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/floatride-energy-4-chalk-pure-grey-gum-gx0270', 'flightClub': 'https://flightclub.com/floatride-energy-4-chalk-pure-grey-gum-gx0270', 'stadiumGoods': ''}" +2b8a182f-1a37-4c94-85ce-f0ff46781ed4,3024983-400,Under Armour,Charged Vantage 2 GS 'Victory Blue',Victory Blue/Quirky Lime,youth,Charged Vantage,2022,2022-03-24,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/832/original/3024983_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/832/original/3024983_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/832/original/3024983_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-vantage-2-gs-victory-blue-3024983-400', 'flightClub': 'https://flightclub.com/charged-vantage-2-gs-victory-blue-3024983-400', 'stadiumGoods': ''}" +2ff2ba82-41d9-41be-a181-67a32888c7a0,3024981-400,Under Armour,Charged Rogue 3 GS 'Royal Quirky Lime',Royal/Quirky Lime,youth,Charged Rogue,2022,2022-03-24,65,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/828/original/3024981_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/828/original/3024981_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/828/original/3024981_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-rogue-3-gs-royal-quirky-lime-3024981-400', 'flightClub': 'https://flightclub.com/charged-rogue-3-gs-royal-quirky-lime-3024981-400', 'stadiumGoods': ''}" +3004fadb-c45b-44d5-b847-7888df9f3b20,DH9390-100,Nike,Air Max Motif TD 'White Black',White/White/Black,infant,Air Max Motif,2022,2022-03-24,80,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/451/original/DH9390_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/451/original/DH9390_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/451/original/DH9390_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-motif-td-white-black-dh9390-100', 'flightClub': 'https://flightclub.com/air-max-motif-td-white-black-dh9390-100', 'stadiumGoods': ''}" +3a3c2d7b-1f7d-4621-9c7d-8ac2576e91be,GY5928,Reebok,Power Rangers x Hurrikaze 2 'Rito Revolto',Alabaster/Pure Grey 8/Power Red,men,Hurrikaze 2,2022,2022-03-24,140,177,"The Power Rangers x Reebok Hurrikaze 2 ‘Rito Revolto’ is drawn from a capsule collection centered around the villains that appeared throughout the ‘Mighty Morphin Power Rangers’ series from the ‘90s. This pair makes over the upper of the Kamikaze II Low in the likeness of Rito Revolto, featuring an off-white leather upper inspired by the character’s bones. The medial side is dressed in a woodland camo print, while the heel overlay is finished in cracked leather. Mismatched branding on each tongue takes the form of an ‘Evil Space Aliens’ callout on the right shoe and a ‘Danger Ranger’ skull and crossbones emblem on the left.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/385/original/GY5928.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/385/original/GY5928.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/385/original/GY5928.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/power-rangers-x-hurrikaze-2-rito-revolto-gy5928', 'flightClub': 'https://flightclub.com/power-rangers-x-hurrikaze-2-rito-revolto-gy5928', 'stadiumGoods': ''}" +47f41d42-6fc6-48eb-9b3a-be8d00ecd726,GX7228,Reebok,Freestyle High Little Kid 'Black Pure Grey',Core Black/Core Black/Pure Grey 5,youth,Freestyle,2022,2022-03-24,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/482/original/GX7228.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/482/original/GX7228.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/482/original/GX7228.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freestyle-high-little-kid-black-pure-grey-gx7228', 'flightClub': 'https://flightclub.com/freestyle-high-little-kid-black-pure-grey-gx7228', 'stadiumGoods': ''}" +48c137de-4199-444f-a44b-86ca9a86271f,DH9388-001,Nike,Nike Air Max Motif Grey Fog Photon Dust (GS),Photon Dust/Grey Fog/Light Smoke Grey/Black,men,Air Max Motif,2022,2022-03-24,120,134,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/048/830/original/DH9388_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/048/830/original/DH9388_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/048/830/original/DH9388_001.png.png'}","{'stockX': 'https://stockx.com/nike-air-max-motif-grey-fog-photon-dust-gs', 'goat': 'https://goat.com/sneakers/air-max-motif-gs-photon-dust-dh9388-001', 'flightClub': 'https://flightclub.com/air-max-motif-gs-photon-dust-dh9388-001', 'stadiumGoods': ''}" +4916bcf5-77aa-43ee-88a9-ff18a8fa7f27,GZ0919,Reebok,Power Rangers x Zig Dynamica 'Mighty Morphin',Pure Grey 3/Pure Grey 5/Black,men,Zig Dynamica,2022,2022-03-24,90,149,"The Power Rangers x Reebok Zig Dynamica ‘Mighty Morphin’ showcases a neutral design inspired by the popular superhero franchise. The lifestyle runner makes use of a grey textile upper with ‘morphing’ side stripes and a tonal crackle design on the eyestay. Mismatched Reebok and Power Rangers branding decorates each tongue. The sneaker rests on a FuelFoam midsole, featuring a unique zigzag structure for a balanced blend of cushioning and response. A gum rubber outsole provides grippy traction underfoot.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/388/original/GZ0919.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/388/original/GZ0919.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/388/original/GZ0919.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/power-rangers-x-zig-dynamica-mighty-morphin-gz0919', 'flightClub': 'https://flightclub.com/power-rangers-x-zig-dynamica-mighty-morphin-gz0919', 'stadiumGoods': ''}" +4ce9f18a-91dc-49f4-947d-b3cef87cc2ed,DH9389-001,Nike,Nike Air Max Motif Grey Fog Photon Dust (PS),Photon Dust/Grey Fog/Light Smoke Grey/Black,preschool,Air Max Motif,2022,2022-03-24,100,104,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/048/831/original/DH9389_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/048/831/original/DH9389_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/048/831/original/DH9389_001.png.png'}","{'stockX': 'https://stockx.com/nike-air-max-motif-grey-fog-photon-dust-ps', 'goat': 'https://goat.com/sneakers/air-max-motif-ps-photon-dust-dh9389-001', 'flightClub': 'https://flightclub.com/air-max-motif-ps-photon-dust-dh9389-001', 'stadiumGoods': ''}" +4d163aa4-fd46-46fc-bdfa-85f0ff375917,A01795C,Converse,Converse Chuck Taylor All-Star 70 Ox Comme des Garcons PLAY Black Red Midsole,Black/Red/Egret,unisex,Chuck 70,2022,2022-03-24,150,159,"The Comme des Garçons Play x Converse Chuck 70 Low ‘Black Red’ makes over the classic silhouette with a red rubber midsole, featuring glossy sidewalls and black pinstripe detailing. A tonal Converse All Star license plate decorates the heel. The upper is constructed from black canvas with contrast white stitching and a reinforced rubber toe cap. Designed by graphic artist Filip Pagowski, CDG Play’s signature heart-and-eyes logo is stamped on the lateral side.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/430/original/A01795C.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/430/original/A01795C.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/430/original/A01795C.png.png'}","{'stockX': 'https://stockx.com/converse-chuck-taylor-all-star-70-ox-comme-des-garcons-play-black-red-midsole', 'goat': 'https://goat.com/sneakers/comme-des-garcons-play-x-chuck-70-low-black-red-a01795c', 'flightClub': 'https://flightclub.com/comme-des-garcons-play-x-chuck-70-low-black-red-a01795c', 'stadiumGoods': ''}" +534cc827-5897-4194-92f2-fd8cc096ad8d,1011B041-010,ASICS,Jolt 3 4E Wide 'Black Hazard Green',Black/Hazard Green,men,Jolt,2022,2022-03-24,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/805/original/1011B041_010.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/805/original/1011B041_010.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/805/original/1011B041_010.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jolt-3-4e-wide-black-hazard-green-1011b041-010', 'flightClub': 'https://flightclub.com/jolt-3-4e-wide-black-hazard-green-1011b041-010', 'stadiumGoods': ''}" +549dae87-c089-4937-a63c-91595f722a18,3025012-500,Under Armour,Charged Pursuit 3 AC PS 'Utility Blue Vivid Lilac',Utility Blue/Vivid Lilac,youth,Charged Pursuit,2022,2022-03-24,52,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/860/original/3025012_500.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/860/original/3025012_500.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/860/original/3025012_500.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-ac-ps-utility-blue-vivid-lilac-3025012-500', 'flightClub': 'https://flightclub.com/charged-pursuit-3-ac-ps-utility-blue-vivid-lilac-3025012-500', 'stadiumGoods': ''}" +54ab801c-9eb6-4c50-a5e6-27528c6dc8d2,DQ7649-600,Nike,Wmns React Phantom Run Flyknit 2 'Pink Prime Zebra',Pink Prime/Phantom/Habanero Red/Black,women,React Phantom Run,2022,2022-03-24,145,223,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/456/original/DQ7649_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/456/original/DQ7649_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/456/original/DQ7649_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-react-phantom-run-flyknit-2-pink-prime-zebra-dq7649-600', 'flightClub': 'https://flightclub.com/wmns-react-phantom-run-flyknit-2-pink-prime-zebra-dq7649-600', 'stadiumGoods': ''}" +555290fb-aae3-4acc-9ca3-605be618bc66,GX9665,adidas,adidas Yeezy 450 Cinder (Kids),Cinder/Cinder/Cinder,child,Yeezy 450,2022,2022-03-24,145,169,"The adidas Yeezy 450 Kids ‘Cinder’ showcases a neutral monochrome finish that complements the shoe’s avant-garde aesthetic. The upper is constructed from breathable knit textile, featuring a stretchy cuff and no-tie elastic laces. The PU-injected midsole extends up the sides to form a midfoot cage, adding lightweight structure to the sock-like build. Underfoot, the rubber outsole features a contoured shape that allows the foot to bend and flex naturally.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/656/original/GX9665.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/656/original/GX9665.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/656/original/GX9665.png.png'}","{'stockX': 'https://stockx.com/adidas-yeezy-450-cinder-kids', 'goat': 'https://goat.com/sneakers/yeezy-450-kids-cinder-gx9665', 'flightClub': 'https://flightclub.com/yeezy-450-kids-cinder-gx9665', 'stadiumGoods': ''}" +57027887-26ce-4504-a24c-19d11aaf89cf,3025011-300,Under Armour,Charged Pursuit 3 GS 'Neptune Sea Mist',Neptune/Sea Mist,youth,Charged Pursuit,2022,2022-03-24,58,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/853/original/3025011_300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/853/original/3025011_300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/853/original/3025011_300.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-gs-neptune-sea-mist-3025011-300', 'flightClub': 'https://flightclub.com/charged-pursuit-3-gs-neptune-sea-mist-3025011-300', 'stadiumGoods': ''}" +579fe988-7511-4f3c-bdb2-ce6d61562d23,3025025-500,Under Armour,Runplay Sky PS 'Octane Camo',Octane/White,youth,Runplay,2022,2022-03-24,50,50,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/862/original/3025025_500.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/862/original/3025025_500.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/862/original/3025025_500.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/runplay-sky-ps-octane-camo-3025025-500', 'flightClub': 'https://flightclub.com/runplay-sky-ps-octane-camo-3025025-500', 'stadiumGoods': ''}" +58be9d7a-6265-4e21-b3f0-3f4f35e8d6b0,MS237VD,New Balance,237v1 'Castlerock Team Orange',Castlerock/Team Orange,men,237,2022,2022-03-24,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/964/original/MS237VD.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/964/original/MS237VD.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/964/original/MS237VD.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/237v1-castlerock-team-orange-ms237vd', 'flightClub': 'https://flightclub.com/237v1-castlerock-team-orange-ms237vd', 'stadiumGoods': ''}" +5abde5d8-72a4-4340-ba30-629faa669268,DO2496-700,Jordan,Jordan 8 Retro Rui Hachimura,Twine/Gym Red-Black-Sesame,men,Air Jordan 8,2022,2022-03-24,225,393,"Designed for the Japanese-born NBA athlete, the Rui Hachimura x Air Jordan 8 Retro SE dresses the retro silhouette in a neutral tan suede upper, featuring perforated detailing and tonal patterned overlays. The 8’s signature details remain intact, including the unique cross-strap design, printed mudguard, and chenille tongue patch, updated here in red with Rui’s personal logo. The sneaker rides on a matching tan polyurethane midsole with encapsulated Nike Air cushioning in the forefoot and heel.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/065/763/956/original/844520_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/065/763/956/original/844520_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/065/763/956/original/844520_00.png.png'}","{'stockX': 'https://stockx.com/air-jordan-8-retro-rui-hachimura', 'goat': 'https://goat.com/sneakers/rui-hachimura-x-air-jordan-8-retro-se-do2496-700', 'flightClub': 'https://flightclub.com/rui-hachimura-x-air-jordan-8-retro-se-do2496-700', 'stadiumGoods': ''}" +61e1b3bb-254f-48a8-9cc8-ed0b10a9113b,GX9666,adidas,adidas Yeezy 450 Cinder (Infants),Cinder/Cinder/Cinder,toddler,Yeezy 450,2022,2022-03-24,125,130,"The adidas Yeezy 450 Infants ‘Cinder’ gives the slip-on silhouette a monochrome makeover in a dark taupe hue. Constructed from a single piece of knit textile, the upper is equipped with no-tie elastic laces and a stretchy cuff that wraps around the ankle for a secure fit. Cradling the sock-like build is a PU injected midsole with tapered ‘fingers’ that extend up the sides. Underfoot, a contoured rubber outsole features a wavy traction pattern for maximum grip.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/041/008/original/888103_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/041/008/original/888103_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/041/008/original/888103_00.png.png'}","{'stockX': 'https://stockx.com/adidas-yeezy-450-cinder-infants', 'goat': 'https://goat.com/sneakers/yeezy-450-infants-cinder-gx9666', 'flightClub': 'https://flightclub.com/yeezy-450-infants-cinder-gx9666', 'stadiumGoods': ''}" +62be25c1-7b0d-4524-b7b1-781ae434e793,MRCELDV2,New Balance,New Balance FuelCell RC Elite v2 District Vision Black,Black/Team Red,men,FuelCell RC Elite,2022,2022-03-24,220,300,"The District Vision x New Balance FuelCell RC Elite v2 ‘Black’ is taken from a capsule collection that celebrates ‘mindfulness in motion.’ The LA-based brand outfits the performance running shoe in a breathable black knit upper, overlaid with a series of tonal synthetic pieces designed by Filip Pagowski. A matching black finish is applied to the FuelCell foam midsole, fitted with a full-length carbon fiber plate for enhanced energy return and propulsion. The lightweight outsole features a mid-foot cutout and durable rubber under the forefoot and heel.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/408/003/original/MRCELDV2.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/408/003/original/MRCELDV2.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/408/003/original/MRCELDV2.png.png'}","{'stockX': 'https://stockx.com/new-balance-fuelcell-rc-elite-v2-district-vision-black', 'goat': 'https://goat.com/sneakers/district-vision-x-fuelcell-rc-elite-v2-black-mrceldv2', 'flightClub': 'https://flightclub.com/district-vision-x-fuelcell-rc-elite-v2-black-mrceldv2', 'stadiumGoods': ''}" +6c6d4916-2894-484b-95a5-c07622a0fcd2,DC0774-050,Jordan,Jordan 1 Low University Blue (W),Football Grey/University Blue/Aluminium-White,women,Air Jordan 1,2022,2022-03-24,90,140,"The women’s Air Jordan 1 Low ‘Aluminum’ features a familiar color deeply ingrained in the history of the Jordan franchise. The leather upper pairs a light grey base with the sneaker’s titular hue on the collar, Swoosh, and forefoot and heel overlay. The latter is accented with a stitched Wings logo, while an embroidered Jumpman icon adorns the tongue. Anchoring the low-top is a rubber cupsole with an Air-sole heel unit encapsulated within a lightweight foam wedge.","{'360': ['https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813', 'https://images.stockx.com/360/Air-Jordan-1-Low-University-Blue-W/Images/Air-Jordan-1-Low-University-Blue-W/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1642063813'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/066/248/226/original/852623_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/066/248/226/original/852623_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/066/248/226/original/852623_00.png.png'}","{'stockX': 'https://stockx.com/air-jordan-1-low-university-blue-w', 'goat': 'https://goat.com/sneakers/wmns-air-jordan-1-low-university-blue-dc0774-050', 'flightClub': 'https://flightclub.com/wmns-air-jordan-1-low-university-blue-dc0774-050', 'stadiumGoods': ''}" +6d01b9e5-9123-43b3-8a42-ce5a85491a7f,GX9662,adidas,adidas Yeezy 450 Cinder,Cinder/Cinder/Cinder,men,Yeezy 450,2022,2022-03-24,210,200,"The adidas Yeezy 450 ‘Cinder’ combines a monochrome dark taupe hue with a futuristic design language. Equipped with rope laces, the knit textile upper wraps the foot in a sock-like build. An elastic cuff secures the ankle, while the foot is cradled by the PU-injected midsole, highlighted by tapered ‘fingers’ that extend up the heel and sides. An Ortholite sockliner provides lightweight cushioning, while the rubber outsole features a wavy traction pattern for optimal grip.","{'360': ['https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952', 'https://images.stockx.com/360/adidas-Yeezy-450-Cinder/Images/adidas-Yeezy-450-Cinder/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647545952'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/883/949/original/888100_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/883/949/original/888100_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/883/949/original/888100_00.png.png'}","{'stockX': 'https://stockx.com/adidas-yeezy-450-cinder', 'goat': 'https://goat.com/sneakers/yeezy-450-cinder-gx9662', 'flightClub': 'https://flightclub.com/yeezy-450-cinder-gx9662', 'stadiumGoods': ''}" +6d6ec589-90f8-4ad1-843a-ea258fa3114d,3025867-500,Under Armour,Assert 9 Sky GS 'Purple Note',Purple Note/White,youth,Assert,2022,2022-03-24,55,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/867/original/3025867_500.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/867/original/3025867_500.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/867/original/3025867_500.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-9-sky-gs-purple-note-3025867-500', 'flightClub': 'https://flightclub.com/assert-9-sky-gs-purple-note-3025867-500', 'stadiumGoods': ''}" +6f57236f-633f-4b44-b0fd-2a74d5565899,1204A001-100,ASICS,Gel Quantum 360 6 GS 'White Mist',White/Mist,youth,Gel Quantum 360,2022,2022-03-24,120,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/727/original/1204A001_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/727/original/1204A001_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/727/original/1204A001_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-360-6-gs-white-mist-1204a001-100', 'flightClub': 'https://flightclub.com/gel-quantum-360-6-gs-white-mist-1204a001-100', 'stadiumGoods': ''}" +733e21f4-189e-46ef-9f1c-95b67bddf6b8,GZ6897,Reebok,Power Rangers x Answer 4 'Lord Zedd',Power Red/Silver Metallic/Solar Lime,men,Answer 4,2022,2022-03-24,170,195,"The Power Rangers x Reebok Answer 4 ‘Lord Zedd’ is taken from a capsule collection that spotlights some of the notable villains from the ‘Mighty Morphin Power Rangers’ series. This special-edition colorway of Allen Iverson’s signature shoe mimics the look of Lord Zedd, highlighted by a crimson leather upper with metallic silver overlays and a blue-tinged translucent tube along the lateral side. ‘Lord Zedd’ is debossed on the tongue, while the character’s likeness appears on the rubber outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/402/original/GZ6897.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/402/original/GZ6897.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/402/original/GZ6897.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/power-rangers-x-answer-4-lord-zedd-gz6897', 'flightClub': 'https://flightclub.com/power-rangers-x-answer-4-lord-zedd-gz6897', 'stadiumGoods': ''}" +77b28c6a-e38f-419a-a7b7-5fb11643f184,GX3016,Reebok,Wmns Floatride Energy 4 'Chalk Stucco Gum',Chalk/Stucco/Reebok Rubber Gum-04,women,Floatride,2022,2022-03-24,110,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/477/original/GX3016.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/477/original/GX3016.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/477/original/GX3016.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-floatride-energy-4-chalk-stucco-gum-gx3016', 'flightClub': 'https://flightclub.com/wmns-floatride-energy-4-chalk-stucco-gum-gx3016', 'stadiumGoods': ''}" +78d83baf-e48e-4616-8329-5a99dadadcef,3024795-001,Under Armour,Jet '21 PS 'Black White Camo',Black/White,youth,Jet,2022,2022-03-24,50,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/823/original/3024795_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/823/original/3024795_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/823/original/3024795_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jet-21-ps-black-white-camo-3024795-001', 'flightClub': 'https://flightclub.com/jet-21-ps-black-white-camo-3024795-001', 'stadiumGoods': ''}" +7dd1adb2-7f00-4229-b15a-8fdd67c2b1ff,3025009-600,Under Armour,Charged Vantage 2 GS 'Beta Tint Electric Tangerine',Beta Tint/Electric Tangerine,youth,Charged Vantage,2022,2022-03-24,70,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/851/original/3025009_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/851/original/3025009_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/851/original/3025009_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-vantage-2-gs-beta-tint-electric-tangerine-3025009-600', 'flightClub': 'https://flightclub.com/charged-vantage-2-gs-beta-tint-electric-tangerine-3025009-600', 'stadiumGoods': ''}" +7e04d29e-9af7-41da-8e86-1164a3b73d04,3025012-100,Under Armour,Charged Pursuit 3 AC PS 'Halo Grey Electro Pink',Halo Grey/Electro Pink,youth,Charged Pursuit,2022,2022-03-24,52,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/856/original/3025012_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/856/original/3025012_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/856/original/3025012_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-ac-ps-halo-grey-electro-pink-3025012-100', 'flightClub': 'https://flightclub.com/charged-pursuit-3-ac-ps-halo-grey-electro-pink-3025012-100', 'stadiumGoods': ''}" +7e94dc2f-7768-4b74-9ca3-315b4684abc7,3024987-100,Under Armour,Charged Pursuit 3 GS 'Jet Grey Black',Jet Grey/Black,youth,Charged Pursuit,2022,2022-03-24,58,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/835/original/3024987_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/835/original/3024987_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/835/original/3024987_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-gs-jet-grey-black-3024987-100', 'flightClub': 'https://flightclub.com/charged-pursuit-3-gs-jet-grey-black-3024987-100', 'stadiumGoods': ''}" +829d1f01-5013-42db-9a61-13b64e0ba958,3024983-100,Under Armour,Charged Vantage 2 GS 'Grey Cruise Gold',Mod Grey/Cruise Gold,youth,Charged Vantage,2022,2022-03-24,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/830/original/3024983_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/830/original/3024983_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/830/original/3024983_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-vantage-2-gs-grey-cruise-gold-3024983-100', 'flightClub': 'https://flightclub.com/charged-vantage-2-gs-grey-cruise-gold-3024983-100', 'stadiumGoods': ''}" +8664f132-82c0-4016-b648-9067b2058506,1112A017-500,ASICS,Wmns Gel Course Glide 'Orchid White',Orchid/White,women,Gel Course,2022,2022-03-24,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/811/original/1112A017_500.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/811/original/1112A017_500.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/811/original/1112A017_500.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-course-glide-orchid-white-1112a017-500', 'flightClub': 'https://flightclub.com/wmns-gel-course-glide-orchid-white-1112a017-500', 'stadiumGoods': ''}" +89ed9626-d064-42e9-972f-772f18438261,DD1096-409,Nike,Revolution 6 GS 'Aura Worn Blue',Aura/Worn Blue/Multi-Color,youth,Revolution 6,2022,2022-03-24,60,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/441/original/DD1096_409.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/441/original/DD1096_409.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/441/original/DD1096_409.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/revolution-6-gs-aura-worn-blue-dd1096-409', 'flightClub': 'https://flightclub.com/revolution-6-gs-aura-worn-blue-dd1096-409', 'stadiumGoods': ''}" +8ea74298-4835-46bb-b1b8-2fea8e0597e7,3025012-300,Under Armour,Charged Pursuit 3 AC PS 'Neptune Sea Mist',Neptune/Sea Mist,youth,Charged Pursuit,2022,2022-03-24,52,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/859/original/3025012_300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/859/original/3025012_300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/859/original/3025012_300.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-ac-ps-neptune-sea-mist-3025012-300', 'flightClub': 'https://flightclub.com/charged-pursuit-3-ac-ps-neptune-sea-mist-3025012-300', 'stadiumGoods': ''}" +907c9a3d-775c-472b-a3f9-b1a2ae86d313,3025012-601,Under Armour,Charged Pursuit 3 AC PS 'Pink Note',Pink Note/White,youth,Charged Pursuit,2022,2022-03-24,52,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/861/original/3025012_601.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/861/original/3025012_601.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/861/original/3025012_601.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-ac-ps-pink-note-3025012-601', 'flightClub': 'https://flightclub.com/charged-pursuit-3-ac-ps-pink-note-3025012-601', 'stadiumGoods': ''}" +950f1e1b-c485-430c-9203-c9acd40f2ad9,3024987-001,Under Armour,Charged Pursuit 3 GS 'Black White',Black/White,youth,Charged Pursuit,2022,2022-03-24,58,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/833/original/3024987_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/833/original/3024987_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/833/original/3024987_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-gs-black-white-3024987-001', 'flightClub': 'https://flightclub.com/charged-pursuit-3-gs-black-white-3024987-001', 'stadiumGoods': ''}" +99822b8d-ecea-4e00-9673-60134e034658,GZ0254,Reebok,Wmns Nanoflex TR 'Vector Navy Hint Mint',Vector Navy/Opal Glow/Hint Mint,women,Nanoflex,2022,2022-03-24,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/203/original/GZ0254.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/203/original/GZ0254.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/203/original/GZ0254.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nanoflex-tr-vector-navy-hint-mint-gz0254', 'flightClub': 'https://flightclub.com/wmns-nanoflex-tr-vector-navy-hint-mint-gz0254', 'stadiumGoods': ''}" +9b95112b-7b1e-4e4c-b438-cf298060214d,GZ0997,Reebok,Floatride Energy X 'Opal Glow Essential Blue',Opal Glow/Acid Yellow/Essential Blue,men,Floatride,2022,2022-03-24,170,227,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/492/original/GZ0997.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/492/original/GZ0997.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/492/original/GZ0997.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/floatride-energy-x-opal-glow-essential-blue-gz0997', 'flightClub': 'https://flightclub.com/floatride-energy-x-opal-glow-essential-blue-gz0997', 'stadiumGoods': ''}" +a21388b1-bf6e-4b54-9d41-0114772c640f,3025001-101,Under Armour,Runplay GS 'Pitch Grey Batik Camo',Pitch Grey/Batik,youth,Runplay,2022,2022-03-24,50,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/846/original/3025001_101.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/846/original/3025001_101.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/846/original/3025001_101.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/runplay-gs-pitch-grey-batik-camo-3025001-101', 'flightClub': 'https://flightclub.com/runplay-gs-pitch-grey-batik-camo-3025001-101', 'stadiumGoods': ''}" +a43fb437-55c0-4593-9574-2ef7b4b78145,3025001-100,Under Armour,Runplay GS 'Mod Grey Royal Camo',Mod Grey/Royal,youth,Runplay,2022,2022-03-24,50,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/844/original/3025001_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/844/original/3025001_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/844/original/3025001_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/runplay-gs-mod-grey-royal-camo-3025001-100', 'flightClub': 'https://flightclub.com/runplay-gs-mod-grey-royal-camo-3025001-100', 'stadiumGoods': ''}" +a476f8d1-b88b-4857-8dec-d7aa89829bed,A01655C,Converse,Wmns Chuck Taylor All Star High 'Seasonal Lugged - Treeline',Treeline/White/Black,women,Chuck Taylor All Star,2022,2022-03-24,70,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/917/original/A01655C.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/917/original/A01655C.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/917/original/A01655C.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-chuck-taylor-all-star-high-seasonal-lugged-treeline-a01655c', 'flightClub': 'https://flightclub.com/wmns-chuck-taylor-all-star-high-seasonal-lugged-treeline-a01655c', 'stadiumGoods': ''}" +a50169c7-450c-484e-9295-a886cc8e8043,GW0486,adidas,Stan Smith 'White Real Blue',Cloud White/Off White/Real Blue,men,Stan Smith,2022,2022-03-24,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/468/original/GW0486.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/468/original/GW0486.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/468/original/GW0486.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/stan-smith-white-real-blue-gw0486', 'flightClub': 'https://flightclub.com/stan-smith-white-real-blue-gw0486', 'stadiumGoods': ''}" +a735b705-431d-45be-9d56-79a01c50cbb1,3024988-001,Under Armour,Charged Pursuit 3 AC PS 'Black White',Black/White,youth,Charged Pursuit,2022,2022-03-24,52,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/839/original/3024988_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/839/original/3024988_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/839/original/3024988_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-ac-ps-black-white-3024988-001', 'flightClub': 'https://flightclub.com/charged-pursuit-3-ac-ps-black-white-3024988-001', 'stadiumGoods': ''}" +a91ea324-a2db-4f1a-838c-b2ae9389858c,A01793C,Converse,Converse Chuck Taylor All-Star 70 Hi Comme des Garcons PLAY Black Red Midsole,Black/Red/Egret,unisex,Chuck 70,2022,2022-03-24,150,155,"The Comme des Garçons Play x Converse Chuck 70 High ‘Black Red’ debuts a bold crimson finish on the glossy rubber midsole — a first in a creative partnership that dates back to 2009. Up top, the black canvas build is accented with a white webbing heel strip and CDG Play’s heart-and-eyes logo. Traditional Chuck details remain intact, including a reinforced white rubber toe cap, winged stitching atop the tongue, and a circular All Star patch on the medial ankle.","{'360': ['https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774', 'https://images.stockx.com/360/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Images/Converse-Chuck-Taylor-All-Star-70-Hi-Comme-des-Garcons-PLAY-Black-Red-Midsole/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649081774'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/094/782/original/918756_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/094/782/original/918756_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/094/782/original/918756_00.png.png'}","{'stockX': 'https://stockx.com/converse-chuck-taylor-all-star-70-hi-comme-des-garcons-play-black-red-midsole', 'goat': 'https://goat.com/sneakers/comme-des-garcons-play-x-chuck-70-high-black-red-a01793c', 'flightClub': 'https://flightclub.com/comme-des-garcons-play-x-chuck-70-high-black-red-a01793c', 'stadiumGoods': ''}" +a97c0172-64b5-47a3-9a9a-bf1afaa783b8,3024988-100,Under Armour,Charged Pursuit 3 AC PS 'Jet Grey Black',Jet Grey/Black,youth,Charged Pursuit,2022,2022-03-24,52,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/840/original/3024988_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/840/original/3024988_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/840/original/3024988_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-ac-ps-jet-grey-black-3024988-100', 'flightClub': 'https://flightclub.com/charged-pursuit-3-ac-ps-jet-grey-black-3024988-100', 'stadiumGoods': ''}" +ae1b974c-88b1-4442-a860-acea1c7e4ce6,GX0380,Reebok,Wmns Floatride Energy Daily 'Canyon Coral',Canyon Coral/Soft Ecru/Chalk,women,Floatride,2022,2022-03-24,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/475/original/GX0380.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/475/original/GX0380.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/475/original/GX0380.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-floatride-energy-daily-canyon-coral-gx0380', 'flightClub': 'https://flightclub.com/wmns-floatride-energy-daily-canyon-coral-gx0380', 'stadiumGoods': ''}" +af3640d2-d112-4336-9246-3daeb789a1ae,3025868-500,Under Armour,Assert 9 PS 'Purple Note White',Purple Note/White,youth,Assert,2022,2022-03-24,50,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/868/original/3025868_500.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/868/original/3025868_500.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/868/original/3025868_500.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-9-ps-purple-note-white-3025868-500', 'flightClub': 'https://flightclub.com/assert-9-ps-purple-note-white-3025868-500', 'stadiumGoods': ''}" +b99aa3dc-ae9e-4d6c-97b3-79591154f8bf,MRCELDT2,New Balance,New Balance FuelCell RC Elite v2 District Vision White,White/Team Red,men,FuelCell RC Elite,2022,2022-03-24,220,290,"Launching as part of a collaborative capsule with the LA-based running and wellness brand, the District Vision x New Balance FuelCell RC Elite v2 ‘White’ delivers a performance silhouette build for road running settings. White knit construction is utilized on the upper, secured with adjustable lace closure and overlaid with tonal synthetic pieces designed by Filip Pagowski. The lightweight build rides on a FuelCell foam midsole with a full-length carbon fiber plate for improved energy return. Underfoot, the outsole features a mid-foot cutout and strategically placed rubber for reduced weight.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/408/001/original/MRCELDT2.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/408/001/original/MRCELDT2.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/408/001/original/MRCELDT2.png.png'}","{'stockX': 'https://stockx.com/new-balance-fuelcell-rc-elite-v2-district-vision-white', 'goat': 'https://goat.com/sneakers/district-vision-x-fuelcell-rc-elite-v2-white-mrceldt2', 'flightClub': 'https://flightclub.com/district-vision-x-fuelcell-rc-elite-v2-white-mrceldt2', 'stadiumGoods': ''}" +bc661a93-3e7b-4676-9e3f-41a9b77ff9b9,DR8924-001,Nike,Air Max 90 GS 'Gradient Cassette',Wolf Grey/Bright Crimson/Volt/Black,youth,Air Max 90,2022,2022-03-24,100,180,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/010/108/original/DR8924_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/010/108/original/DR8924_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/010/108/original/DR8924_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-90-gs-gradient-cassette-dr8924-001', 'flightClub': 'https://flightclub.com/air-max-90-gs-gradient-cassette-dr8924-001', 'stadiumGoods': ''}" +be4eaec4-a824-4171-8bd2-fa14dc895f8a,1014A237-403,ASICS,GT 1000 11 GS 'Clear Blue',Clear Blue/Mako Blue,youth,GT 1000,2022,2022-03-24,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/009/912/original/1014A237_403.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/009/912/original/1014A237_403.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/009/912/original/1014A237_403.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gt-1000-11-gs-clear-blue-1014a237-403', 'flightClub': 'https://flightclub.com/gt-1000-11-gs-clear-blue-1014a237-403', 'stadiumGoods': ''}" +c28f218f-760c-47de-b4e3-151dcfa1165f,MS237VB,New Balance,237v1 'Dusk Blue Team Red',Dusk Blue/Team Red,men,237,2022,2022-03-24,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/963/original/MS237VB.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/963/original/MS237VB.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/963/original/MS237VB.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/237v1-dusk-blue-team-red-ms237vb', 'flightClub': 'https://flightclub.com/237v1-dusk-blue-team-red-ms237vb', 'stadiumGoods': ''}" +c6065ae4-eed5-4877-93a2-cf644563f742,3024988-600,Under Armour,Charged Pursuit 3 AC PS 'Red Black',Red/Black,youth,Charged Pursuit,2022,2022-03-24,52,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/843/original/3024988_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/843/original/3024988_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/843/original/3024988_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-ac-ps-red-black-3024988-600', 'flightClub': 'https://flightclub.com/charged-pursuit-3-ac-ps-red-black-3024988-600', 'stadiumGoods': ''}" +d317b775-6e31-4b3f-858d-405ba2b9831d,3024983-001,Under Armour,Charged Vantage 2 GS 'Black White',Black/White,youth,Charged Vantage,2022,2022-03-24,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/829/original/3024983_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/829/original/3024983_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/829/original/3024983_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-vantage-2-gs-black-white-3024983-001', 'flightClub': 'https://flightclub.com/charged-vantage-2-gs-black-white-3024983-001', 'stadiumGoods': ''}" +d4a405f1-ce6d-4f04-a8a2-efe8c88da051,3025011-500,Under Armour,Charged Pursuit 3 GS 'Utility Blue Vivid Lilac',Utility Blue/Vivid Lilac,youth,Charged Pursuit,2022,2022-03-24,58,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/854/original/3025011_500.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/854/original/3025011_500.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/854/original/3025011_500.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-gs-utility-blue-vivid-lilac-3025011-500', 'flightClub': 'https://flightclub.com/charged-pursuit-3-gs-utility-blue-vivid-lilac-3025011-500', 'stadiumGoods': ''}" +d56e5b77-e7b6-4058-8f25-3d09fe36a3a2,3025003-001,Under Armour,Runplay Wild PS 'Black Quirky Lime Camo',Black/Quirky Lime,youth,Runplay,2022,2022-03-24,45,45,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/848/original/3025003_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/848/original/3025003_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/848/original/3025003_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/runplay-wild-ps-black-quirky-lime-camo-3025003-001', 'flightClub': 'https://flightclub.com/runplay-wild-ps-black-quirky-lime-camo-3025003-001', 'stadiumGoods': ''}" +d959053e-0470-4c88-bdda-41b102a7af62,GY5945,Reebok,GL 1000 'Black Pure Grey',Core Black/Pure Grey 7/Pure Grey 5,men,GL 1000,2022,2022-03-24,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/486/original/GY5945.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/486/original/GY5945.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/486/original/GY5945.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gl-1000-black-pure-grey-gy5945', 'flightClub': 'https://flightclub.com/gl-1000-black-pure-grey-gy5945', 'stadiumGoods': ''}" +de783733-4731-4372-af02-9402a527d3db,3025011-601,Under Armour,Charged Pursuit 3 GS 'Pink Note',Pink Note/White,youth,Charged Pursuit,2022,2022-03-24,58,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/855/original/3025011_601.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/855/original/3025011_601.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/855/original/3025011_601.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-gs-pink-note-3025011-601', 'flightClub': 'https://flightclub.com/charged-pursuit-3-gs-pink-note-3025011-601', 'stadiumGoods': ''}" +e0efa35e-5510-44a1-9433-7dac6c2b1ecb,3025414-500,Under Armour,Charged Rogue 3 GS 'International Women's Day',Grape/Halo Grey,youth,Charged Rogue,2022,2022-03-24,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/866/original/3025414_500.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/866/original/3025414_500.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/866/original/3025414_500.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-rogue-3-gs-international-women-s-day-3025414-500', 'flightClub': 'https://flightclub.com/charged-rogue-3-gs-international-women-s-day-3025414-500', 'stadiumGoods': ''}" +e16b7e60-7207-4d8f-9274-80c0a07793ce,GZ4300,adidas,Ozelia 'Black White',Core Black/Cloud White/Core Black,men,Ozelia,2022,2022-03-24,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/494/original/GZ4300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/494/original/GZ4300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/494/original/GZ4300.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ozelia-black-white-gz4300', 'flightClub': 'https://flightclub.com/ozelia-black-white-gz4300', 'stadiumGoods': ''}" +e35389a0-7d4a-4250-9ebb-da4e33db01ea,3025011-100,Under Armour,Charged Pursuit 3 GS 'Halo Grey Electro Pink',Halo Grey/Electro Pink,youth,Charged Pursuit,2022,2022-03-24,58,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/852/original/3025011_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/852/original/3025011_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/852/original/3025011_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-gs-halo-grey-electro-pink-3025011-100', 'flightClub': 'https://flightclub.com/charged-pursuit-3-gs-halo-grey-electro-pink-3025011-100', 'stadiumGoods': ''}" +ec27a3fa-b459-4cc3-8f31-f044861035b6,3024987-401,Under Armour,Charged Pursuit 3 GS 'Victory Blue',Victory Blue/Midnight Navy,youth,Charged Pursuit,2022,2022-03-24,58,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/836/original/3024987_401.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/836/original/3024987_401.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/836/original/3024987_401.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-gs-victory-blue-3024987-401', 'flightClub': 'https://flightclub.com/charged-pursuit-3-gs-victory-blue-3024987-401', 'stadiumGoods': ''}" +efb2edba-2037-40e0-9dac-7e65f356b87d,3024795-104,Under Armour,Jet '21 PS 'Grey Pacific Purple',Halo Grey/Pacific Purple,youth,Jet,2022,2022-03-24,50,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/825/original/3024795_104.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/825/original/3024795_104.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/825/original/3024795_104.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jet-21-ps-grey-pacific-purple-3024795-104', 'flightClub': 'https://flightclub.com/jet-21-ps-grey-pacific-purple-3024795-104', 'stadiumGoods': ''}" +f0809702-3c5f-4a89-8866-a595c72c1aa3,3024988-401,Under Armour,Charged Pursuit 3 AC PS 'Victory Blue',Victory Blue/Midnight Navy,youth,Charged Pursuit,2022,2022-03-24,52,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/841/original/3024988_401.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/841/original/3024988_401.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/841/original/3024988_401.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-pursuit-3-ac-ps-victory-blue-3024988-401', 'flightClub': 'https://flightclub.com/charged-pursuit-3-ac-ps-victory-blue-3024988-401', 'stadiumGoods': ''}" +f5aca6c3-79dd-4811-8c15-d598601a5d56,DH9390-001,Nike,Nike Air Max Motif Grey Fog Photon Dust (TD),Photon Dust/Grey Fog/Light Smoke Grey/Black,toddler,Air Max Motif,2022,2022-03-24,80,94,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/048/832/original/DH9390_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/048/832/original/DH9390_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/048/832/original/DH9390_001.png.png'}","{'stockX': 'https://stockx.com/nike-air-max-motif-grey-fog-photon-dust-td', 'goat': 'https://goat.com/sneakers/air-max-motif-td-photon-dust-dh9390-001', 'flightClub': 'https://flightclub.com/air-max-motif-td-photon-dust-dh9390-001', 'stadiumGoods': ''}" +f961ec84-805b-46e3-a1f9-cb4d8874b03b,374923-05,Puma,Basket Classic 21 'White Peacoat',White/Peacoat,men,Basket,2022,2022-03-24,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/875/original/374923_05.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/875/original/374923_05.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/875/original/374923_05.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/basket-classic-21-white-peacoat-374923-05', 'flightClub': 'https://flightclub.com/basket-classic-21-white-peacoat-374923-05', 'stadiumGoods': ''}" +f998a26a-50ac-421b-90a0-bd880b2c169b,GY7732,Reebok,Liquifect 180 3 'Black Cold Grey',Core Black/Cold Grey 6/Footwear White,men,Liquifect 180,2022,2022-03-24,85,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/487/original/GY7732.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/487/original/GY7732.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/487/original/GY7732.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/liquifect-180-3-black-cold-grey-gy7732', 'flightClub': 'https://flightclub.com/liquifect-180-3-black-cold-grey-gy7732', 'stadiumGoods': ''}" +f9a44f8a-92f1-4346-873f-73490322ea18,3025009-401,Under Armour,Charged Vantage 2 GS 'Peninsula Blue',Peninsula Blue/Electro Pink,youth,Charged Vantage,2022,2022-03-24,70,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/850/original/3025009_401.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/850/original/3025009_401.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/850/original/3025009_401.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-vantage-2-gs-peninsula-blue-3025009-401', 'flightClub': 'https://flightclub.com/charged-vantage-2-gs-peninsula-blue-3025009-401', 'stadiumGoods': ''}" +ffe39480-a167-45d8-a1f9-4e48fe78a157,DQ8580-100,Nike,Nike Dunk Low Vintage Green (W),White/Pine Green/Cream,women,Dunk,2022,2022-03-24,110,263,"The Nike women’s Dunk Low ‘Vintage Green’ brings an aged aesthetic to the retro ‘80s hoops shoe, highlighted by a pre-yellowed rubber midsole. Cream-colored laces secure the upper, composed of smooth white leather on the quarter panel and perforated toe box. Contrasting hits of green settle on the Swoosh, eyestay, and forefoot and heel overlay, all featuring a subtle sheen and a lightly textured finish. Atop the breathable nylon tongue, a woven tag displays classic Nike branding.","{'360': ['https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938', 'https://images.stockx.com/360/Nike-Dunk-Low-Vintage-Green-W/Images/Nike-Dunk-Low-Vintage-Green-W/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503938'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/067/957/866/original/878613_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/067/957/866/original/878613_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/067/957/866/original/878613_00.png.png'}","{'stockX': 'https://stockx.com/nike-dunk-low-vintage-green-w', 'goat': 'https://goat.com/sneakers/dunk-low-vintage-green-dq8580-100', 'flightClub': 'https://flightclub.com/dunk-low-vintage-green-dq8580-100', 'stadiumGoods': ''}" +017e95dc-82b2-468c-bb35-33e7d634ade9,3025070-100,Under Armour,HOVR Drive 2 'White Metallic Silver',White/Metallic Silver,men,HOVR Drive 2,2022,2022-03-23,160,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/503/original/3025070_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/503/original/3025070_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/503/original/3025070_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/hovr-drive-2-white-metallic-silver-3025070-100', 'flightClub': 'https://flightclub.com/hovr-drive-2-white-metallic-silver-3025070-100', 'stadiumGoods': ''}" +03a19d32-3053-4c06-a485-98f61ed6e046,3023703-105,Under Armour,Charged Commit TR 3 'Mod Grey',Mod Grey/Pitch Grey,men,Charged Commit,2022,2022-03-23,80,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/444/original/3023703_105.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/444/original/3023703_105.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/444/original/3023703_105.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-commit-tr-3-mod-grey-3023703-105', 'flightClub': 'https://flightclub.com/charged-commit-tr-3-mod-grey-3023703-105', 'stadiumGoods': ''}" +0d172e74-42a7-46d8-81f8-dc929e06a77d,3025045-101,Under Armour,Wmns Ansa Studio Slide 'White Halo Grey',White/Halo Grey,women,Ansa Studio Slide,2022,2022-03-23,40,40,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/493/original/3025045_101.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/493/original/3025045_101.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/493/original/3025045_101.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ansa-studio-slide-white-halo-grey-3025045-101', 'flightClub': 'https://flightclub.com/wmns-ansa-studio-slide-white-halo-grey-3025045-101', 'stadiumGoods': ''}" +0d8e908e-eea4-43db-9334-cdb5a3abe282,3022955-603,Under Armour,Wmns Essential 'Wildflower',Wildflower/White,women,Essential,2022,2022-03-23,65,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/439/original/3022955_603.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/439/original/3022955_603.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/439/original/3022955_603.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-essential-wildflower-3022955-603', 'flightClub': 'https://flightclub.com/wmns-essential-wildflower-3022955-603', 'stadiumGoods': ''}" +1660d017-e3f3-4be1-842a-8a39377e683d,GY4421,adidas,Jeremy Scott x Forum Wings 4.0 'Gradient',,men,Forum,2022,2022-03-23,180,180,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/750/original/GY4421.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/750/original/GY4421.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/750/original/GY4421.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jeremy-scott-x-forum-wings-4-0-gradient-gy4421', 'flightClub': 'https://flightclub.com/jeremy-scott-x-forum-wings-4-0-gradient-gy4421', 'stadiumGoods': ''}" +24f0304b-cace-4280-a175-31cfe0d65892,3024436-500,Under Armour,Wmns Ansa Graphic Slide 'Snakeskin',Ash Plum/Mauve Pink,women,Ansa Slides,2022,2022-03-23,25,95,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/405/original/3024436_500.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/405/original/3024436_500.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/405/original/3024436_500.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ansa-graphic-slide-snakeskin-3024436-500', 'flightClub': 'https://flightclub.com/wmns-ansa-graphic-slide-snakeskin-3024436-500', 'stadiumGoods': ''}" +2ba11fb3-f399-4e68-9017-6c09470f950f,3024636-001,Under Armour,Assert 9 AC PS 'Black Penta Pink',Black/Penta Pink,youth,Assert,2022,2022-03-23,50,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/470/original/3024636_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/470/original/3024636_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/470/original/3024636_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-9-ac-ps-black-penta-pink-3024636-001', 'flightClub': 'https://flightclub.com/assert-9-ac-ps-black-penta-pink-3024636-001', 'stadiumGoods': ''}" +2d6acbe0-2e80-4e0e-a554-9a60424140e9,DM3513-100,Nike,Chron 2 Canvas Premium SB 'Sail Sangria',Sail/Sangria/Cool Grey/Rough Green,men,Chron SB,2022,2022-03-23,65,142,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/570/original/DM3513_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/570/original/DM3513_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/570/original/DM3513_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/chron-2-canvas-premium-sb-sail-sangria-dm3513-100', 'flightClub': 'https://flightclub.com/chron-2-canvas-premium-sb-sail-sangria-dm3513-100', 'stadiumGoods': ''}" +338576e6-f63c-405a-a61f-3691d74d7426,3024886-102,Under Armour,Wmns Charged Impulse 2 Knit 'White Breaker Blue',White/Breaker Blue,women,Charged Impulse,2022,2022-03-23,80,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/473/original/3024886_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/473/original/3024886_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/473/original/3024886_102.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-charged-impulse-2-knit-white-breaker-blue-3024886-102', 'flightClub': 'https://flightclub.com/wmns-charged-impulse-2-knit-white-breaker-blue-3024886-102', 'stadiumGoods': ''}" +3552fa5d-d0dc-41b7-858e-4d35e95f6e8c,1014A230-002,ASICS,Gel Cumulus 23 GS 'Black Barely Rose',Black/Barely Rose,youth,Gel Cumulus,2022,2022-03-23,75,75,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/680/original/1014A230_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/680/original/1014A230_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/680/original/1014A230_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-cumulus-23-gs-black-barely-rose-1014a230-002', 'flightClub': 'https://flightclub.com/gel-cumulus-23-gs-black-barely-rose-1014a230-002', 'stadiumGoods': ''}" +38c17366-3ae9-4a05-b671-1cb80f692e22,3024277-300,Under Armour,Charged Focus 'Marine OD Green',Marine Od Green/Khaki Grey,men,Charged Focus,2022,2022-03-23,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/461/original/3024277_300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/461/original/3024277_300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/461/original/3024277_300.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-focus-marine-od-green-3024277-300', 'flightClub': 'https://flightclub.com/charged-focus-marine-od-green-3024277-300', 'stadiumGoods': ''}" +406174ad-0052-40db-8ab8-2f84099c7bb8,3025045-600,Under Armour,Wmns Ansa Studio Slide 'Retro Pink',Pink Note/Retro Pink,women,Ansa Studio Slide,2022,2022-03-23,40,40,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/496/original/3025045_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/496/original/3025045_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/496/original/3025045_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ansa-studio-slide-retro-pink-3025045-600', 'flightClub': 'https://flightclub.com/wmns-ansa-studio-slide-retro-pink-3025045-600', 'stadiumGoods': ''}" +49a89dc0-6695-4536-89a3-9380ea711377,3023722-001,Under Armour,Blur Select MC 'Black',Black/White,men,Blur,2022,2022-03-23,85,85,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/447/original/3023722_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/447/original/3023722_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/447/original/3023722_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/blur-select-mc-black-3023722-001', 'flightClub': 'https://flightclub.com/blur-select-mc-black-3023722-001', 'stadiumGoods': ''}" +4a11368d-ed39-4f39-bf79-62a4788eb21a,3024636-106,Under Armour,Assert 9 AC PS 'Halo Grey',Halo Grey/White,youth,Assert,2022,2022-03-23,50,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/471/original/3024636_106.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/471/original/3024636_106.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/471/original/3024636_106.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-9-ac-ps-halo-grey-3024636-106', 'flightClub': 'https://flightclub.com/assert-9-ac-ps-halo-grey-3024636-106', 'stadiumGoods': ''}" +4a8ee544-1512-4d5b-ab12-6872dc8975b0,3022955-003,Under Armour,Wmns Essential 'Black Pink Speckle',Black/White,women,Essential,2022,2022-03-23,65,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/435/original/3022955_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/435/original/3022955_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/435/original/3022955_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-essential-black-pink-speckle-3022955-003', 'flightClub': 'https://flightclub.com/wmns-essential-black-pink-speckle-3022955-003', 'stadiumGoods': ''}" +4aff2557-7ad1-4136-96e4-4cb93647d540,3024877-400,Under Armour,Charged Rogue 3 'Victory Blue',Victory Blue/White,men,Charged Rogue,2022,2022-03-23,80,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/472/original/3024877_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/472/original/3024877_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/472/original/3024877_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-rogue-3-victory-blue-3024877-400', 'flightClub': 'https://flightclub.com/charged-rogue-3-victory-blue-3024877-400', 'stadiumGoods': ''}" +500dffa1-b3f9-46a2-8ee9-0d4af106a539,CZ1864-303,Nike,Wmns Wildhorse 7 'Night Forest Light Lemon Twist',Night Forest/Dusty Sage/Light Lemon Twist/Coconut Milk,women,Wildhorse 7,2022,2022-03-23,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/546/original/CZ1864_303.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/546/original/CZ1864_303.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/546/original/CZ1864_303.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-wildhorse-7-night-forest-light-lemon-twist-cz1864-303', 'flightClub': 'https://flightclub.com/wmns-wildhorse-7-night-forest-light-lemon-twist-cz1864-303', 'stadiumGoods': ''}" +518039f2-c1c8-425e-b8ca-f6c93d2c2df0,3022716-603,Under Armour,Wmns Atlantic Dun Sandal 'Fireball',Fireball/Venom Red,women,Atlantic Dun Sandal,2022,2022-03-23,22,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/383/original/3022716_603.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/383/original/3022716_603.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/383/original/3022716_603.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-atlantic-dun-sandal-fireball-3022716-603', 'flightClub': 'https://flightclub.com/wmns-atlantic-dun-sandal-fireball-3022716-603', 'stadiumGoods': ''}" +528ba818-35ee-4821-8f17-985082ac8319,3023791-500,Under Armour,Marbella 7 Graphic Footbed Sandal GS 'Ultra Indigo',Ultra Indigo/Pink Shock,youth,Marbella 7,2022,2022-03-23,30,88,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/403/original/3023791_500.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/403/original/3023791_500.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/403/original/3023791_500.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/marbella-7-graphic-footbed-sandal-gs-ultra-indigo-3023791-500', 'flightClub': 'https://flightclub.com/marbella-7-graphic-footbed-sandal-gs-ultra-indigo-3023791-500', 'stadiumGoods': ''}" +53181e64-d05a-4257-a720-d4fc8a01a7d3,3024633-004,Under Armour,Assert 9 GS 'Black White',Black/White,youth,Assert,2022,2022-03-23,55,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/468/original/3024633_004.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/468/original/3024633_004.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/468/original/3024633_004.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-9-gs-black-white-3024633-004', 'flightClub': 'https://flightclub.com/assert-9-gs-black-white-3024633-004', 'stadiumGoods': ''}" +53846581-e1a8-402c-9686-574f52f7205e,306894-02,Puma,First Mile x Porsche Design x RCT Nitro Runner 'Urban Red',Urban Red/Urban Red,men,RCT,2022,2022-03-23,250,250,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/869/original/306894_02.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/869/original/306894_02.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/869/original/306894_02.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/first-mile-x-porsche-design-x-rct-nitro-runner-urban-red-306894-02', 'flightClub': 'https://flightclub.com/first-mile-x-porsche-design-x-rct-nitro-runner-urban-red-306894-02', 'stadiumGoods': ''}" +53ad9bfd-17e9-418f-8db0-4d5ec8a69e14,GX3008,adidas,X_PLR 'Triple White',Cloud White/Cloud White/Cloud White,men,X_PLR,2022,2022-03-23,90,89,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/476/original/GX3008.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/476/original/GX3008.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/476/original/GX3008.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/x_plr-triple-white-gx3008', 'flightClub': 'https://flightclub.com/x_plr-triple-white-gx3008', 'stadiumGoods': ''}" +56b0b8cf-e1c5-4e6b-81df-ff0c78dd32ce,3025044-300,Under Armour,Ansa Elevate Slide 'Pale Olive',Pale Olive/Avocado,men,Ansa Elevate Slide,2022,2022-03-23,35,35,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/489/original/3025044_300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/489/original/3025044_300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/489/original/3025044_300.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ansa-elevate-slide-pale-olive-3025044-300', 'flightClub': 'https://flightclub.com/ansa-elevate-slide-pale-olive-3025044-300', 'stadiumGoods': ''}" +58e672e9-396c-4d64-92cc-8f0021140234,3025045-001,Under Armour,Wmns Ansa Studio Slide 'Black Jet Grey',Black/Jet Grey,women,Ansa Studio Slide,2022,2022-03-23,40,40,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/491/original/3025045_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/491/original/3025045_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/491/original/3025045_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ansa-studio-slide-black-jet-grey-3025045-001', 'flightClub': 'https://flightclub.com/wmns-ansa-studio-slide-black-jet-grey-3025045-001', 'stadiumGoods': ''}" +5b518fcd-7c25-4ca5-b447-2bb186ffd519,3024886-105,Under Armour,Wmns Charged Impulse 2 Knit 'White Metallic Rose Gold',White/Metallic Rose Gold,women,Charged Impulse,2022,2022-03-23,80,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/477/original/3024886_105.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/477/original/3024886_105.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/477/original/3024886_105.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-charged-impulse-2-knit-white-metallic-rose-gold-3024886-105', 'flightClub': 'https://flightclub.com/wmns-charged-impulse-2-knit-white-metallic-rose-gold-3024886-105', 'stadiumGoods': ''}" +5b7dab51-94b6-4118-8847-48facfc0f59d,3023783-102,Under Armour,Fat Tire Defender Sandal PS 'Mod Grey Camo',Mod Grey/Red,youth,Fat Tire Defender Sandal,2022,2022-03-23,38,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/396/original/3023783_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/396/original/3023783_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/396/original/3023783_102.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fat-tire-defender-sandal-ps-mod-grey-camo-3023783-102', 'flightClub': 'https://flightclub.com/fat-tire-defender-sandal-ps-mod-grey-camo-3023783-102', 'stadiumGoods': ''}" +5eb91456-98cd-4af5-9743-7c889e17ccae,3023777-002,Under Armour,Core Remix Neon Slide 'Black Beta',Black/Beta,men,Core Remix Slides,2022,2022-03-23,45,95,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/391/original/3023777_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/391/original/3023777_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/391/original/3023777_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/core-remix-neon-slide-black-beta-3023777-002', 'flightClub': 'https://flightclub.com/core-remix-neon-slide-black-beta-3023777-002', 'stadiumGoods': ''}" +5f8f1ee7-1735-40e0-a367-9da1c2029d85,195175-03,Puma,Aviator 'Castlerock',Castlerock/Green Glare,men,Aviator,2022,2022-03-23,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/817/original/195175_03.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/817/original/195175_03.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/817/original/195175_03.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/aviator-castlerock-195175-03', 'flightClub': 'https://flightclub.com/aviator-castlerock-195175-03', 'stadiumGoods': ''}" +65d84262-9b82-4a50-b28a-3197fb528374,3025237-400,Under Armour,Project Rock Slide 'Deep Sea',Deep Sea/Breaker Blue,men,Project Rock Slide,2022,2022-03-23,65,65,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/514/original/3025237_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/514/original/3025237_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/514/original/3025237_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/project-rock-slide-deep-sea-3025237-400', 'flightClub': 'https://flightclub.com/project-rock-slide-deep-sea-3025237-400', 'stadiumGoods': ''}" +6955fdda-b0a7-4cd8-9fb7-22245f7d1843,3024453-100,Under Armour,Wmns Ignite 4 Graphic Strap Slide 'Zebra',White/Black,women,Ignite Slide,2022,2022-03-23,35,105,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/464/original/3024453_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/464/original/3024453_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/464/original/3024453_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ignite-4-graphic-strap-slide-zebra-3024453-100', 'flightClub': 'https://flightclub.com/wmns-ignite-4-graphic-strap-slide-zebra-3024453-100', 'stadiumGoods': ''}" +6aa40bff-3e71-44f5-b7d8-519d24a2d8e8,3024439-001,Under Armour,Ansa Graphic Slide GS 'Graffiti',Black/Pale Moonlight,youth,Ansa Slides,2022,2022-03-23,23,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/409/original/3024439_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/409/original/3024439_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/409/original/3024439_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ansa-graphic-slide-gs-graffiti-3024439-001', 'flightClub': 'https://flightclub.com/ansa-graphic-slide-gs-graffiti-3024439-001', 'stadiumGoods': ''}" +6c5237b3-bd53-4748-8406-5d4abc104b55,1201A661-020,Asics,ASICS Gel-Lyte III Naruto Shippuden Kakashi,Grey/Navy/Faded Olive,men,Gel Lyte 3,2022,2022-03-23,180,287,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/344/353/original/1201A661_020.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/344/353/original/1201A661_020.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/344/353/original/1201A661_020.png.png'}","{'stockX': 'https://stockx.com/asics-gel-lyte-iii-naruto-shippuden-kakashi', 'goat': 'https://goat.com/sneakers/naruto-shippuden-x-gel-lyte-3-og-kakashi-1201a661-020', 'flightClub': 'https://flightclub.com/naruto-shippuden-x-gel-lyte-3-og-kakashi-1201a661-020', 'stadiumGoods': ''}" +7477a3e5-1403-45dd-b7e3-51f22ad1eac2,3025069-001,Under Armour,HOVR Tour Spikeless 'Black Beta',Black/Beta,men,HOVR Tour,2022,2022-03-23,180,255,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/502/original/3025069_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/502/original/3025069_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/502/original/3025069_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/hovr-tour-spikeless-black-beta-3025069-001', 'flightClub': 'https://flightclub.com/hovr-tour-spikeless-black-beta-3025069-001', 'stadiumGoods': ''}" +74a3447e-8f60-4715-9c8c-94b72281a3ec,3023791-001,Under Armour,Marbella 7 Graphic Footbed Sandal GS 'Black',Black/White,youth,Marbella 7,2022,2022-03-23,30,30,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/401/original/3023791_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/401/original/3023791_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/401/original/3023791_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/marbella-7-graphic-footbed-sandal-gs-black-3023791-001', 'flightClub': 'https://flightclub.com/marbella-7-graphic-footbed-sandal-gs-black-3023791-001', 'stadiumGoods': ''}" +74f99d96-6b3b-419f-9b94-84269137f02e,1014A234-003,ASICS,Pre Excite 9 PS 'Black Hazard Green',Black/Hazard Green,youth,Pre Excite,2022,2022-03-23,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/681/original/1014A234_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/681/original/1014A234_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/681/original/1014A234_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/pre-excite-9-ps-black-hazard-green-1014a234-003', 'flightClub': 'https://flightclub.com/pre-excite-9-ps-black-hazard-green-1014a234-003', 'stadiumGoods': ''}" +75585bb5-f762-4c17-be3a-0f2836752ec7,3024439-100,Under Armour,Ansa Graphic Slide GS 'Speckled',White/Pink Shock,youth,Ansa Slides,2022,2022-03-23,23,23,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/410/original/3024439_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/410/original/3024439_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/410/original/3024439_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ansa-graphic-slide-gs-speckled-3024439-100', 'flightClub': 'https://flightclub.com/ansa-graphic-slide-gs-speckled-3024439-100', 'stadiumGoods': ''}" +75b63189-23fc-43cd-ad9d-4d94cb449446,3024453-001,Under Armour,Wmns Ignite 4 Graphic Strap Slide 'Black Aqua Foam',Black/Aqua Foam,women,Ignite Slide,2022,2022-03-23,35,105,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/463/original/3024453_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/463/original/3024453_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/463/original/3024453_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ignite-4-graphic-strap-slide-black-aqua-foam-3024453-001', 'flightClub': 'https://flightclub.com/wmns-ignite-4-graphic-strap-slide-black-aqua-foam-3024453-001', 'stadiumGoods': ''}" +7722ea5d-bc4a-4c96-8d00-4a83fbe86fe2,3023759-100,Under Armour,Mercenary 12 Slide 'White Black',White/Black,men,Mercenary 12 Slide,2022,2022-03-23,40,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/388/original/3023759_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/388/original/3023759_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/388/original/3023759_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/mercenary-12-slide-white-black-3023759-100', 'flightClub': 'https://flightclub.com/mercenary-12-slide-white-black-3023759-100', 'stadiumGoods': ''}" +7cfdb91b-5001-4272-a5b8-b02988b765c1,1498046-,Asics,ASICS Gel-1130 Naruto Shippuden Itachi,Black/Grey/Red,men,ASICS Gel-1130,2022,2022-03-23,150,183,,"{'360': ['https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513', 'https://images.stockx.com/360/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Images/ASICS-Gel-1130-Naruto-Shippuden-Itachi/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648820513'], 'original': 'https://images.stockx.com/images/ASICS-Gel-1130-Naruto-Shippuden-Itachi-Product.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648820513', 'small': 'https://images.stockx.com/images/ASICS-Gel-1130-Naruto-Shippuden-Itachi-Product.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648820513', 'thumbnail': 'https://images.stockx.com/images/ASICS-Gel-1130-Naruto-Shippuden-Itachi-Product.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648820513'}","{'stockX': 'https://stockx.com/asics-gel-1130-naruto-shippuden-itachi', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +7e0a36d8-7b0f-42b5-b840-9a3d864b13e1,3024155-105,Under Armour,Wmns HOVR Phantom 2 IntelliKnit 'White',White,women,HOVR Phantom 2,2022,2022-03-23,140,215,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/455/original/3024155_105.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/455/original/3024155_105.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/455/original/3024155_105.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-hovr-phantom-2-intelliknit-white-3024155-105', 'flightClub': 'https://flightclub.com/wmns-hovr-phantom-2-intelliknit-white-3024155-105', 'stadiumGoods': ''}" +7e10cd32-1aee-4cb1-bb70-2edfd305fa4f,3022716-401,Under Armour,Wmns Atlantic Dun Sandal 'Isotope Blue',Isotope Blue/White,women,Atlantic Dun Sandal,2022,2022-03-23,22,95,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/378/original/3022716_401.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/378/original/3022716_401.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/378/original/3022716_401.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-atlantic-dun-sandal-isotope-blue-3022716-401', 'flightClub': 'https://flightclub.com/wmns-atlantic-dun-sandal-isotope-blue-3022716-401', 'stadiumGoods': ''}" +8053e4aa-6931-4c44-a468-5dd23f29ab6d,3023783-001,Under Armour,Fat Tire Defender Sandal PS 'Black Camo',Black/Pitch Grey,youth,Fat Tire Defender Sandal,2022,2022-03-23,38,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/394/original/3023783_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/394/original/3023783_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/394/original/3023783_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fat-tire-defender-sandal-ps-black-camo-3023783-001', 'flightClub': 'https://flightclub.com/fat-tire-defender-sandal-ps-black-camo-3023783-001', 'stadiumGoods': ''}" +8150b128-967f-49ec-a693-110131d4e873,3024340-100,Under Armour,Ignite 6 TX Slide 'Team USA',White/Royal,men,Ignite 6,2022,2022-03-23,35,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/404/original/3024340_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/404/original/3024340_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/404/original/3024340_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ignite-6-tx-slide-team-usa-3024340-100', 'flightClub': 'https://flightclub.com/ignite-6-tx-slide-team-usa-3024340-100', 'stadiumGoods': ''}" +8311b641-6566-43de-8dc0-77893aa8bbbb,3023703-600,Under Armour,Charged Commit TR 3 'Red Halo Grey',Red/Halo Grey,men,Charged Commit,2022,2022-03-23,80,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/446/original/3023703_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/446/original/3023703_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/446/original/3023703_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-commit-tr-3-red-halo-grey-3023703-600', 'flightClub': 'https://flightclub.com/charged-commit-tr-3-red-halo-grey-3023703-600', 'stadiumGoods': ''}" +8319ba83-e3fb-419b-8dbb-41d11e729724,GY3335,adidas,Superstar I 'White Team College Burgundy',Cloud White/Team College Burgundy/Cloud White,infant,Superstar,2022,2022-03-23,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/485/original/GY3335.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/485/original/GY3335.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/485/original/GY3335.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/superstar-i-white-team-college-burgundy-gy3335', 'flightClub': 'https://flightclub.com/superstar-i-white-team-college-burgundy-gy3335', 'stadiumGoods': ''}" +8684e840-829e-4375-ac3a-187d14883825,3022716-403,Under Armour,Wmns Atlantic Dun Sandal 'Radar Blue',Radar Blue/Halo Grey,women,Atlantic Dun Sandal,2022,2022-03-23,22,95,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/379/original/3022716_403.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/379/original/3022716_403.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/379/original/3022716_403.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-atlantic-dun-sandal-radar-blue-3022716-403', 'flightClub': 'https://flightclub.com/wmns-atlantic-dun-sandal-radar-blue-3022716-403', 'stadiumGoods': ''}" +89321e24-7956-4460-9502-7af9b5d67c97,3025070-101,Under Armour,HOVR Drive 2 'White Metallic Silver',Mod Grey/Black,men,HOVR Drive 2,2022,2022-03-23,160,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/504/original/3025070_101.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/504/original/3025070_101.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/504/original/3025070_101.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/hovr-drive-2-white-metallic-silver-3025070-101', 'flightClub': 'https://flightclub.com/hovr-drive-2-white-metallic-silver-3025070-101', 'stadiumGoods': ''}" +893a80c3-33bf-40a8-955b-1562b99f3b80,3025044-400,Under Armour,Ansa Elevate Slide 'Deep Sea',Deep Sea/Breaker Blue,men,Ansa Elevate Slide,2022,2022-03-23,35,35,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/490/original/3025044_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/490/original/3025044_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/490/original/3025044_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ansa-elevate-slide-deep-sea-3025044-400', 'flightClub': 'https://flightclub.com/ansa-elevate-slide-deep-sea-3025044-400', 'stadiumGoods': ''}" +8ad965e2-ed94-4b5e-acbc-7d299e2cf09e,3024263-001,Under Armour,Zone BB PS 'Black Concrete',Black/Concrete,youth,Zone,2022,2022-03-23,55,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/457/original/3024263_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/457/original/3024263_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/457/original/3024263_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zone-bb-ps-black-concrete-3024263-001', 'flightClub': 'https://flightclub.com/zone-bb-ps-black-concrete-3024263-001', 'stadiumGoods': ''}" +910ee823-9316-4d43-85b2-dd4b13a80ae7,3022955-103,Under Armour,Wmns Essential 'White Breeze',White/Breeze,women,Essential,2022,2022-03-23,65,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/436/original/3022955_103.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/436/original/3022955_103.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/436/original/3022955_103.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-essential-white-breeze-3022955-103', 'flightClub': 'https://flightclub.com/wmns-essential-white-breeze-3022955-103', 'stadiumGoods': ''}" +92844e8b-0ade-47df-987d-1da7e7af43e6,383107-01,Puma,Mirage Sport Tech 'White Castlerock',White/Black/Castlerock,men,Mirage Sport,2022,2022-03-23,100,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/747/original/383107_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/747/original/383107_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/747/original/383107_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/mirage-sport-tech-white-castlerock-383107-01', 'flightClub': 'https://flightclub.com/mirage-sport-tech-white-castlerock-383107-01', 'stadiumGoods': ''}" +95f8e1c1-6bd4-46e8-9ce9-9410f070b1c9,3025687-002,Under Armour,Wmns Ignite Freedom 2 Slide 'Black Marine OD Green',Black/Marine Od Green,women,Ignite Freedom,2022,2022-03-23,35,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/517/original/3025687_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/517/original/3025687_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/517/original/3025687_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ignite-freedom-2-slide-black-marine-od-green-3025687-002', 'flightClub': 'https://flightclub.com/wmns-ignite-freedom-2-slide-black-marine-od-green-3025687-002', 'stadiumGoods': ''}" +9c8cc22e-a4f5-4828-863d-1630a1640f41,3023731-102,Under Armour,Draw Sport Spikeless 'Mod Grey',Mod Grey/Pitch Grey,men,Draw Sport,2022,2022-03-23,100,175,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/448/original/3023731_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/448/original/3023731_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/448/original/3023731_102.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/draw-sport-spikeless-white-academy-3023731-102', 'flightClub': 'https://flightclub.com/draw-sport-spikeless-white-academy-3023731-102', 'stadiumGoods': ''}" +9df1bc01-a58d-46db-ab58-a81ec532b416,3024453-401,Under Armour,Wmns Ignite 4 Graphic Strap Slide 'Radar Blue',Radar Blue/White,women,Ignite Slide,2022,2022-03-23,35,105,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/465/original/3024453_401.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/465/original/3024453_401.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/465/original/3024453_401.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ignite-4-graphic-strap-slide-radar-blue-3024453-401', 'flightClub': 'https://flightclub.com/wmns-ignite-4-graphic-strap-slide-radar-blue-3024453-401', 'stadiumGoods': ''}" +9fde62a0-b239-49ab-bc8f-42ff2f4eea4c,3023790-100,Under Armour,Ignite 6 Graphic Footbed Slide GS 'Halo Grey White',Halo Grey/White,youth,Ignite 6,2022,2022-03-23,30,105,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/400/original/3023790_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/400/original/3023790_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/400/original/3023790_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ignite-6-graphic-footbed-slide-gs-halo-grey-white-3023790-100', 'flightClub': 'https://flightclub.com/ignite-6-graphic-footbed-slide-gs-halo-grey-white-3023790-100', 'stadiumGoods': ''}" +9ff1bf06-b99a-4c21-92e1-7d4a0c8a6086,3025687-001,Under Armour,Wmns Ignite Freedom 2 Slide 'Black',Black/White,women,Ignite Freedom,2022,2022-03-23,35,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/516/original/3025687_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/516/original/3025687_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/516/original/3025687_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ignite-freedom-2-slide-black-3025687-001', 'flightClub': 'https://flightclub.com/wmns-ignite-freedom-2-slide-black-3025687-001', 'stadiumGoods': ''}" +a0e23d27-7ffe-4991-bb09-27c4e4e78baa,3023777-001,Under Armour,Core Remix Neon Slide 'Black High-Vis Yellow',Black/High-Vis Yellow,men,Core Remix Slides,2022,2022-03-23,45,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/389/original/3023777_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/389/original/3023777_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/389/original/3023777_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/core-remix-neon-slide-black-high-vis-yellow-3023777-001', 'flightClub': 'https://flightclub.com/core-remix-neon-slide-black-high-vis-yellow-3023777-001', 'stadiumGoods': ''}" +a7085902-475c-44e7-9fa1-61a97992f621,3023790-001,Under Armour,Ignite 6 Graphic Footbed Slide GS 'Black Breeze',Black/Breeze,youth,Ignite 6,2022,2022-03-23,30,30,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/399/original/3023790_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/399/original/3023790_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/399/original/3023790_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ignite-6-graphic-footbed-slide-gs-black-breeze-3023790-001', 'flightClub': 'https://flightclub.com/ignite-6-graphic-footbed-slide-gs-black-breeze-3023790-001', 'stadiumGoods': ''}" +a83c991f-24ef-40bc-87fc-fd6f056bd4f3,1498047-,Asics,ASICS Gel-1130 Naruto Shippuden Sasuke,Lavender/Navy/Grey,men,ASICS Gel-1130,2022,2022-03-23,150,208,,"{'360': [], 'original': 'https://images.stockx.com/images/ASICS-Gel-1130-Naruto-Shippuden-Sasuke.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648077760', 'small': 'https://images.stockx.com/images/ASICS-Gel-1130-Naruto-Shippuden-Sasuke.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648077760', 'thumbnail': 'https://images.stockx.com/images/ASICS-Gel-1130-Naruto-Shippuden-Sasuke.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648077760'}","{'stockX': 'https://stockx.com/asics-gel-1130-naruto-shippuden-sasuke', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +ab136c45-d791-4aee-a8c6-3a29069213e4,3024436-602,Under Armour,Wmns Ansa Graphic Slide 'Brilliance',Brilliance/Black,women,Ansa Slides,2022,2022-03-23,25,95,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/406/original/3024436_602.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/406/original/3024436_602.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/406/original/3024436_602.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ansa-graphic-slide-brilliance-3024436-602', 'flightClub': 'https://flightclub.com/wmns-ansa-graphic-slide-brilliance-3024436-602', 'stadiumGoods': ''}" +aff74134-5dcd-4cfb-971e-6eb5b7b562b3,GZ0256,Reebok,Wmns Nanoflex TR 'Grey Footwear White',Pure Grey 2/Footwear White/Pure Grey 3,women,Nanoflex,2022,2022-03-23,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/488/original/GZ0256.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/488/original/GZ0256.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/488/original/GZ0256.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nanoflex-tr-grey-footwear-white-gz0256', 'flightClub': 'https://flightclub.com/wmns-nanoflex-tr-grey-footwear-white-gz0256', 'stadiumGoods': ''}" +b063a6df-d693-44eb-bc0d-46fd108479f8,3023696-002,Under Armour,Wmns Project Rock 4 'Black Pitch Grey',Black/Pitch Grey,women,Project Rock 4,2022,2022-03-23,150,225,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/440/original/3023696_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/440/original/3023696_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/440/original/3023696_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-project-rock-4-black-pitch-grey-3023696-002', 'flightClub': 'https://flightclub.com/wmns-project-rock-4-black-pitch-grey-3023696-002', 'stadiumGoods': ''}" +bb539375-8102-43a3-88ea-bec6f52b0620,3022716-502,Under Armour,Wmns Atlantic Dun Sandal 'Ultra Indigo Playful Peach',Ultra Indigo/Playful Peach,women,Atlantic Dun Sandal,2022,2022-03-23,22,85,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/382/original/3022716_502.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/382/original/3022716_502.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/382/original/3022716_502.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-atlantic-dun-sandal-ultra-indigo-playful-peach-3022716-502', 'flightClub': 'https://flightclub.com/wmns-atlantic-dun-sandal-ultra-indigo-playful-peach-3022716-502', 'stadiumGoods': ''}" +bcb26622-9d75-4372-bccf-90176040c50b,3025255-101,Under Armour,Flow Velociti SE 'Metallic Gun Metal',Mod Grey/Metallic Gun Metal,men,Flow Velociti,2022,2022-03-23,130,185,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/515/original/3025255_101.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/515/original/3025255_101.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/515/original/3025255_101.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/flow-velociti-se-metallic-gun-metal-3025255-101', 'flightClub': 'https://flightclub.com/flow-velociti-se-metallic-gun-metal-3025255-101', 'stadiumGoods': ''}" +bfb496a8-364f-42b1-9a01-81b6a5e4bbdf,3022716-305,Under Armour,Wmns Atlantic Dun Sandal 'Summer Lime',Summer Lime/Halo Grey,women,Atlantic Dun Sandal,2022,2022-03-23,22,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/377/original/3022716_305.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/377/original/3022716_305.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/377/original/3022716_305.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-atlantic-dun-sandal-summer-lime-3022716-305', 'flightClub': 'https://flightclub.com/wmns-atlantic-dun-sandal-summer-lime-3022716-305', 'stadiumGoods': ''}" +c40d3bd5-bbca-48e8-be86-32b6708bfd69,EE3659,adidas,X_PLR J 'Black White',Core Black/Cloud White/Core Black,youth,X_PLR,2022,2022-03-23,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/459/original/EE3659.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/459/original/EE3659.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/459/original/EE3659.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/x_plr-j-black-white-ee3659', 'flightClub': 'https://flightclub.com/x_plr-j-black-white-ee3659', 'stadiumGoods': ''}" +c43b166b-5e7b-431c-a219-64ffb8071f7b,3023783-101,Under Armour,Fat Tire Defender Sandal PS 'Pink Camo',Halo Grey/Stellar Pink,youth,Fat Tire Defender Sandal,2022,2022-03-23,38,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/395/original/3023783_101.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/395/original/3023783_101.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/395/original/3023783_101.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fat-tire-defender-sandal-ps-pink-camo-3023783-101', 'flightClub': 'https://flightclub.com/fat-tire-defender-sandal-ps-pink-camo-3023783-101', 'stadiumGoods': ''}" +cbb01e46-432d-42da-83e5-aa55007131eb,3024633-600,Under Armour,Assert 9 GS 'Red White',Red/White,youth,Assert,2022,2022-03-23,55,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/469/original/3024633_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/469/original/3024633_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/469/original/3024633_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/assert-9-gs-red-white-3024633-600', 'flightClub': 'https://flightclub.com/assert-9-gs-red-white-3024633-600', 'stadiumGoods': ''}" +ce833c5d-050c-4290-b11a-9c266980689d,3024272-106,Under Armour,Wmns HOVR Apex 3 'White Beta',White/Beta,women,HOVR Apex,2022,2022-03-23,140,215,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/458/original/3024272_106.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/458/original/3024272_106.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/458/original/3024272_106.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-hovr-apex-3-white-beta-3024272-106', 'flightClub': 'https://flightclub.com/wmns-hovr-apex-3-white-beta-3024272-106', 'stadiumGoods': ''}" +cf9d73d9-ea52-4207-901e-f2833adc1cdd,383232-01,Puma,RS-Z LTH 'Black',Black/Black,men,RS-Z,2022,2022-03-23,110,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/888/original/383232_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/888/original/383232_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/888/original/383232_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rs-z-lth-black-383232-01', 'flightClub': 'https://flightclub.com/rs-z-lth-black-383232-01', 'stadiumGoods': ''}" +d1be10aa-a898-44a9-a429-4dff46cb048f,3025123-100,Under Armour,Wmns Blur Smoke MC 'Halo Grey Metallic Ore',Halo Grey/Metallic Ore,women,Blur Smoke,2022,2022-03-23,120,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/506/original/3025123_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/506/original/3025123_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/506/original/3025123_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-blur-smoke-mc-halo-grey-metallic-ore-3025123-100', 'flightClub': 'https://flightclub.com/wmns-blur-smoke-mc-halo-grey-metallic-ore-3025123-100', 'stadiumGoods': ''}" +d64827d2-60bc-4bec-a485-4052c747a15e,3022955-109,Under Armour,Wmns Essential 'White Sea Mist',White/Sea Mist,women,Essential,2022,2022-03-23,65,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/438/original/3022955_109.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/438/original/3022955_109.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/438/original/3022955_109.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-essential-white-sea-mist-3022955-109', 'flightClub': 'https://flightclub.com/wmns-essential-white-sea-mist-3022955-109', 'stadiumGoods': ''}" +d6b188b6-c962-446b-97a6-6084f2ca4193,385178-01,Puma,RS-X 'Global Futurism',Black/Spellbound/Saffron,men,RS-X,2022,2022-03-23,110,159,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/902/original/385178_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/902/original/385178_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/902/original/385178_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rs-x-global-futurism-385178-01', 'flightClub': 'https://flightclub.com/rs-x-global-futurism-385178-01', 'stadiumGoods': ''}" +d8c728cf-d2e3-40cd-9d07-43bbfa4bd1c7,DH0531-100,Nike,Nike Air Max Furyosa Summit White Honeydew (W),Summit White/Honeydew/Spruce Aura/Purple Dawn,women,Air Max Furyosa,2022,2022-03-23,160,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/094/121/original/838511_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/094/121/original/838511_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/094/121/original/838511_00.png.png'}","{'stockX': 'https://stockx.com/nike-air-max-furyosa-pastel-w', 'goat': 'https://goat.com/sneakers/wmns-air-max-furyosa-pastel-dh0531-100', 'flightClub': 'https://flightclub.com/wmns-air-max-furyosa-pastel-dh0531-100', 'stadiumGoods': ''}" +dab6a5f9-a490-4d70-8d1a-3ba5f7e0fca5,1011B175-004,ASICS,Gel Pulse 13 'Black Hazard Green',Black/Hazard Green,men,Gel Pulse,2022,2022-03-23,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/807/original/1011B175_004.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/807/original/1011B175_004.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/807/original/1011B175_004.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-pulse-13-black-hazard-green-1011b175-004', 'flightClub': 'https://flightclub.com/gel-pulse-13-black-hazard-green-1011b175-004', 'stadiumGoods': ''}" +db770d0f-d015-4fc7-b0a7-94edd665d322,DM0521-100,Nike,Nike Air Trainer 1 Chlorophyll (2022),White/Black/Medium Grey,men,Air Trainer 1,2022,2022-03-23,125,118,"The 2022 edition of the Nike Air Trainer 1 Mid ‘Chlorophyll’ brings back a vintage performance silhouette from 1987, envisaged by Tinker Hatfield as a multi-purpose trainer that could be used for running, lifting weights, or playing tennis (as demonstrated by John McEnroe a year before the shoe’s official launch). Along with traditional laces, an adjustable midfoot strap secures the white leather upper, featuring grey nubuck overlays and a black leather Swoosh. The shoe’s titular hue appears on branding elements that include an embroidered Nike Air logo on the heel. The sneaker sits atop a foam midsole with encapsulated Air-sole cushioning and a lateral outrigger for enhanced stability.","{'360': ['https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287', 'https://images.stockx.com/360/Nike-Air-Trainer-1-Chlorophyll-2022/Images/Nike-Air-Trainer-1-Chlorophyll-2022/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1649082287'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/277/667/original/918316_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/277/667/original/918316_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/277/667/original/918316_00.png.png'}","{'stockX': 'https://stockx.com/nike-air-trainer-1-chlorophyll-2022', 'goat': 'https://goat.com/sneakers/air-trainer-1-mid-chlorophyll-2022-dm0521-100', 'flightClub': 'https://flightclub.com/air-trainer-1-mid-chlorophyll-2022-dm0521-100', 'stadiumGoods': ''}" +de1537b2-848b-4ee8-88e0-002703c57789,DH9388-002,Nike,Air Max Motif GS 'Cool Grey Washed Teal',Cool Grey/Washed Teal/Anthracite/Black,youth,Air Max Motif,2022,2022-03-23,120,200,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/450/original/DH9388_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/450/original/DH9388_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/450/original/DH9388_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-motif-gs-cool-grey-washed-teal-dh9388-002', 'flightClub': 'https://flightclub.com/air-max-motif-gs-cool-grey-washed-teal-dh9388-002', 'stadiumGoods': ''}" +e3a5a15c-31b8-4e48-a297-98dbf1cba1cb,3023697-401,Under Armour,Project Rock 4 GS 'Deep Sea Breaker Blue',Deep Sea/Breaker Blue,youth,Project Rock 4,2022,2022-03-23,130,205,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/441/original/3023697_401.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/441/original/3023697_401.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/441/original/3023697_401.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/project-rock-4-gs-deep-sea-breaker-blue-3023697-401', 'flightClub': 'https://flightclub.com/project-rock-4-gs-deep-sea-breaker-blue-3023697-401', 'stadiumGoods': ''}" +e49f9b26-824a-4fa3-8aff-d147b97ccb63,3023405-400,Under Armour,Infinity 3 AL PS 'Midnight Blue',Midnight Blue/White,youth,Infinity 3,2022,2022-03-23,58,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/386/original/3023405_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/386/original/3023405_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/386/original/3023405_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/infinity-3-al-ps-midnight-blue-3023405-400', 'flightClub': 'https://flightclub.com/infinity-3-al-ps-midnight-blue-3023405-400', 'stadiumGoods': ''}" +e7300ad3-e62f-4cec-a27c-a60b021e6be7,3025750-600,Under Armour,Charged Verssert 'Speckle - Black Rose',Black Rose/Black,men,Charged Verssert,2022,2022-03-23,70,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/518/original/3025750_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/518/original/3025750_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/518/original/3025750_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-verssert-speckle-black-rose-3025750-600', 'flightClub': 'https://flightclub.com/charged-verssert-speckle-black-rose-3025750-600', 'stadiumGoods': ''}" +ed08de25-30c0-43b8-bc13-448e9e44b097,3024886-106,Under Armour,Wmns Charged Impulse 2 Knit 'Mod Grey Victory Blue',Mod Grey/Victory Blue,women,Charged Impulse,2022,2022-03-23,80,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/480/original/3024886_106.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/480/original/3024886_106.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/480/original/3024886_106.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-charged-impulse-2-knit-mod-grey-victory-blue-3024886-106', 'flightClub': 'https://flightclub.com/wmns-charged-impulse-2-knit-mod-grey-victory-blue-3024886-106', 'stadiumGoods': ''}" +f1a156db-71f5-4450-802e-f039e59a11ef,DJ6376-800,Nike,Wmns Blazer Low Platform Next Nature 'Flower Power',Citron Tint/Pale Ivory/Black/Pale Ivory,women,Blazer,2022,2022-03-23,95,175,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/564/original/DJ6376_800.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/564/original/DJ6376_800.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/564/original/DJ6376_800.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-blazer-low-platform-next-nature-flower-power-dj6376-800', 'flightClub': 'https://flightclub.com/wmns-blazer-low-platform-next-nature-flower-power-dj6376-800', 'stadiumGoods': ''}" +f542abb8-5f86-4f25-b039-2f21618261c6,GX4103,adidas,UltraBoost 5.0 DNA 'Black Team Solar Green',Core Black/Team Solar Green/Team Solar Orange,men,UltraBoost 5.0,2022,2022-03-23,190,260,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/479/original/GX4103.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/479/original/GX4103.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/479/original/GX4103.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultraboost-5-0-dna-black-team-solar-green-gx4103', 'flightClub': 'https://flightclub.com/ultraboost-5-0-dna-black-team-solar-green-gx4103', 'stadiumGoods': ''}" +f9cdd551-689e-4f43-bcfd-43d51a644679,3024886-103,Under Armour,Wmns Charged Impulse 2 Knit 'Mod Grey Sea Mist',Mod Grey/Sea Mist,women,Charged Impulse,2022,2022-03-23,80,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/474/original/3024886_103.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/474/original/3024886_103.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/474/original/3024886_103.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-charged-impulse-2-knit-mod-grey-sea-mist-3024886-103', 'flightClub': 'https://flightclub.com/wmns-charged-impulse-2-knit-mod-grey-sea-mist-3024886-103', 'stadiumGoods': ''}" +fefd7480-9fe8-4b93-8790-18234e11deac,3023703-104,Under Armour,Charged Commit TR 3 'Halo Grey Cerulean',Halo Grey/Cerulean,men,Charged Commit,2022,2022-03-23,80,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/442/original/3023703_104.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/442/original/3023703_104.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/442/original/3023703_104.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-commit-tr-3-halo-grey-cerulean-3023703-104', 'flightClub': 'https://flightclub.com/charged-commit-tr-3-halo-grey-cerulean-3023703-104', 'stadiumGoods': ''}" +0194b220-6ac1-4613-8be0-420313868b06,3025052-002,Under Armour,TriBase Reign 4 'Black Pitch Grey',Black/Pitch Grey,men,Reign 4,2022,2022-03-22,120,195,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/497/original/3025052_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/497/original/3025052_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/497/original/3025052_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/tribase-reign-4-black-pitch-grey-3025052-002', 'flightClub': 'https://flightclub.com/tribase-reign-4-black-pitch-grey-3025052-002', 'stadiumGoods': ''}" +08b65bb7-4fff-4c7a-b89c-4c4fb873e412,CW3096-001,Nike,Wmns React Ace Tour 'Black Metallic Dark Grey',Black/Smoke/Metallic Dark Grey/White,women,React Ace Tour,2022,2022-03-22,140,220,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/595/original/CW3096_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/595/original/CW3096_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/595/original/CW3096_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-react-ace-tour-black-metallic-dark-grey-cw3096-001', 'flightClub': 'https://flightclub.com/wmns-react-ace-tour-black-metallic-dark-grey-cw3096-001', 'stadiumGoods': ''}" +0d51b661-af7a-4c66-9ea8-350ed9dfb94d,GZ0245,Reebok,Nanoflex TR 'Black Pure Grey',Core Black/Footwear White/Pure Grey 4,men,Nanoflex,2022,2022-03-22,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/760/original/GZ0245.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/760/original/GZ0245.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/760/original/GZ0245.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/nanoflex-tr-black-pure-grey-gz0245', 'flightClub': 'https://flightclub.com/nanoflex-tr-black-pure-grey-gz0245', 'stadiumGoods': ''}" +10f8117e-b810-4c7f-a614-a340a6c369b0,DB1550-402,Nike,Air VaporMax 2021 Flyknit GS 'Game Royal',Game Royal/White/Anthracite/Black,youth,Air VaporMax,2022,2022-03-22,190,270,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/603/original/DB1550_402.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/603/original/DB1550_402.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/603/original/DB1550_402.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-vapormax-2021-flyknit-gs-game-royal-db1550-402', 'flightClub': 'https://flightclub.com/air-vapormax-2021-flyknit-gs-game-royal-db1550-402', 'stadiumGoods': ''}" +11d24fa5-d62f-4bb1-bcd9-3ea7b4056f85,DM1090-400,Nike,Little Posite One GS 'Aura Worn Blue White',Aura/Worn Blue/White/Aura,youth,Little Posite,2022,2022-03-22,180,208,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/628/original/DM1090_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/628/original/DM1090_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/628/original/DM1090_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/little-posite-one-gs-aura-worn-blue-white-dm1090-400', 'flightClub': 'https://flightclub.com/little-posite-one-gs-aura-worn-blue-white-dm1090-400', 'stadiumGoods': ''}" +2053d3c7-d4b6-4934-80c3-9e1da02cde39,172890C,Converse,All Star BB Shift 'White Pixel Purple',White/Washed Teal/Pixel Purple,men,All Star Pro BB,2022,2022-03-22,120,298,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/432/original/172890C.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/432/original/172890C.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/432/original/172890C.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/all-star-bb-shift-white-pixel-purple-172890c', 'flightClub': 'https://flightclub.com/all-star-bb-shift-white-pixel-purple-172890c', 'stadiumGoods': ''}" +26a7d793-6d8e-42e1-9d82-be9cae5980f9,DD0490-003,Nike,React Miler 3 'Black Siren Red',Black/Siren Red/Volt/White,men,React Miler,2022,2022-03-22,120,200,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/608/original/DD0490_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/608/original/DD0490_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/608/original/DD0490_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/react-miler-3-black-siren-red-dd0490-003', 'flightClub': 'https://flightclub.com/react-miler-3-black-siren-red-dd0490-003', 'stadiumGoods': ''}" +3257ca24-c461-4c6a-8383-c01ac7455891,DH2987-001,Nike,Court Vision Low Next Nature 'Black White',Black/Black/White,men,Court Vision,2022,2022-03-22,65,154,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/621/original/DH2987_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/621/original/DH2987_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/621/original/DH2987_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/court-vision-low-next-nature-black-white-dh2987-001', 'flightClub': 'https://flightclub.com/court-vision-low-next-nature-black-white-dh2987-001', 'stadiumGoods': ''}" +32e8ed0d-19d9-422d-9bcf-1b80fb201093,DM1471-400,Nike,Court Borough Low 2 TD 'Blueberry',Mystic Navy/Medium Blue/University Blue/White,infant,Court Borough,2022,2022-03-22,45,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/629/original/DM1471_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/629/original/DM1471_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/629/original/DM1471_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/court-borough-low-2-td-blueberry-dm1471-400', 'flightClub': 'https://flightclub.com/court-borough-low-2-td-blueberry-dm1471-400', 'stadiumGoods': ''}" +330e0faf-c931-409b-83cc-cb3a9cd9b01a,CZ0222-555,Nike,Wmns NikeCourt Air Zoom Vapor Pro 'Doll Amethyst Wave',Doll/White/Volt/Amethyst Wave,women,Vapor Pro,2022,2022-03-22,120,200,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/600/original/CZ0222_555.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/600/original/CZ0222_555.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/600/original/CZ0222_555.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nikecourt-air-zoom-vapor-pro-doll-amethyst-wave-cz0222-555', 'flightClub': 'https://flightclub.com/wmns-nikecourt-air-zoom-vapor-pro-doll-amethyst-wave-cz0222-555', 'stadiumGoods': ''}" +34b9f683-e528-4792-aeab-faede574425d,3024016-004,Under Armour,Flow Velociti SE 'Black White',Black/White,men,Flow Velociti,2022,2022-03-22,130,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/453/original/3024016_004.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/453/original/3024016_004.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/453/original/3024016_004.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/flow-velociti-se-black-white-3024016-004', 'flightClub': 'https://flightclub.com/flow-velociti-se-black-white-3024016-004', 'stadiumGoods': ''}" +430842f0-fa3a-4388-8782-171463a94a3a,GY4567,Reebok,Wmns Floatride Energy 3 'Quartz Glow Atomic Pink',Quartz Glow/Atomic Pink/Acid Yellow,women,Floatride,2022,2022-03-22,110,180,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/751/original/GY4567.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/751/original/GY4567.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/751/original/GY4567.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-floatride-energy-3-quartz-glow-atomic-pink-gy4567', 'flightClub': 'https://flightclub.com/wmns-floatride-energy-3-quartz-glow-atomic-pink-gy4567', 'stadiumGoods': ''}" +4523f1a6-1fd1-447c-9de6-a7acb6171859,307083-01,Puma,BMW Motorsport x RS-Fast Jr 'Silver',Nimbus Cloud/Silver,youth,RS-Fast,2022,2022-03-22,95,95,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/505/original/307083_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/505/original/307083_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/505/original/307083_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/bmw-motorsport-x-rs-fast-jr-silver-307083-01', 'flightClub': 'https://flightclub.com/bmw-motorsport-x-rs-fast-jr-silver-307083-01', 'stadiumGoods': ''}" +4adea57f-4388-4310-9333-0a4b13df12de,DQ2904-002,Nike,Wmns Air Max Interlock 'Light Iron Ore Amethyst Ash',Light Iron Ore/Amethyst Ash/White/Black,women,Air Max Interlock,2022,2022-03-22,100,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/641/original/DQ2904_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/641/original/DQ2904_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/641/original/DQ2904_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-air-max-interlock-light-iron-ore-amethyst-ash-dq2904-002', 'flightClub': 'https://flightclub.com/wmns-air-max-interlock-light-iron-ore-amethyst-ash-dq2904-002', 'stadiumGoods': ''}" +4c21aae6-e5a7-42f7-b7c9-54a9210ebdc1,768878-102,Jordan,Jordan 6 Retro Low Atmosphere (GS),White/Atmosphere-Infrared 23-Black,child,Air Jordan 6,2022,2022-03-22,125,110,,"{'360': ['https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955', 'https://images.stockx.com/360/Air-Jordan-6-Retro-Low-Atmosphere-GS/Images/Air-Jordan-6-Retro-Low-Atmosphere-GS/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646841955'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/066/247/707/original/875254_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/066/247/707/original/875254_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/066/247/707/original/875254_00.png.png'}","{'stockX': 'https://stockx.com/air-jordan-6-retro-low-atmosphere-gs', 'goat': 'https://goat.com/sneakers/air-jordan-6-retro-low-gs-infrared-768878-102', 'flightClub': 'https://flightclub.com/air-jordan-6-retro-low-gs-infrared-768878-102', 'stadiumGoods': ''}" +4f1dd4c4-3a08-4c30-ba3a-8cdeb04dedb1,GY5215,Reebok,Lavante Trail 2 'Black Dynamic Red',Core Black/Pure Grey 3/Dynamic Red,men,Lavante Trail,2022,2022-03-22,85,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/752/original/GY5215.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/752/original/GY5215.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/752/original/GY5215.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lavante-trail-2-black-dynamic-red-gy5215', 'flightClub': 'https://flightclub.com/lavante-trail-2-black-dynamic-red-gy5215', 'stadiumGoods': ''}" +53b88475-4035-49c5-9c6d-d420437a6bfd,GZ3600,adidas,Kevin Lyons x Originals Flex J 'Monster',Cloud White/True Pink/Shadow Navy,youth,Adidas Flex,2022,2022-03-22,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/763/original/GZ3600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/763/original/GZ3600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/763/original/GZ3600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/kevin-lyons-x-originals-flex-j-monster-gz3600', 'flightClub': 'https://flightclub.com/kevin-lyons-x-originals-flex-j-monster-gz3600', 'stadiumGoods': ''}" +596d4804-3014-4d22-8152-6ca5fa5cede9,3024590-403,Under Armour,Charged Assert 9 'Victory Blue',Victory Blue/Halo Grey,men,Charged Assert,2022,2022-03-22,70,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/122/614/original/3024590_403.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/122/614/original/3024590_403.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/122/614/original/3024590_403.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-assert-9-victory-blue-3024590-403', 'flightClub': 'https://flightclub.com/charged-assert-9-victory-blue-3024590-403', 'stadiumGoods': ''}" +5bb4ab70-2ee1-42c4-a13c-a0fd39247ab3,GX7225,Reebok,Freestyle High Little Kid 'Triple White',Footwear White/Footwear White/Footwear White,youth,Freestyle,2022,2022-03-22,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/735/original/GX7225.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/735/original/GX7225.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/735/original/GX7225.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freestyle-high-little-kid-triple-white-gx7225', 'flightClub': 'https://flightclub.com/freestyle-high-little-kid-triple-white-gx7225', 'stadiumGoods': ''}" +682b41e8-6347-4347-8727-6af161170097,3025129-400,Under Armour,Charged Breeze 'Midnight Navy Victory Blue',Midnight Navy/Victory Blue,men,Charged Breeze,2022,2022-03-22,90,165,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/512/original/3025129_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/512/original/3025129_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/512/original/3025129_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-breeze-midnight-navy-victory-blue-3025129-400', 'flightClub': 'https://flightclub.com/charged-breeze-midnight-navy-victory-blue-3025129-400', 'stadiumGoods': ''}" +6990f127-a0a9-433f-b5c2-be8071b23476,DV3529-102,Jordan,Air Jordan 6 Retro Low TD 'Atmosphere',White/Infrared 23/Black/Atmosphere,infant,Air Jordan 6,2022,2022-03-22,60,60,"The Air Jordan 6 Retro Low TD ‘Atmosphere’ applies a pastel color palette to the legendary model that MJ wore when he captured his first NBA championship. Rendered in low-top form and built for a new generation of Jordan fans, the sneaker features a soft pink leather upper with contrasting white leather overlays at the midfoot and heel. The latter is embellished with a Jumpman icon and equipped with a molded pull tab for easy on and off. A second Jumpman logo decorates the pink translucent rubber outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/250/892/original/901379_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/250/892/original/901379_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/250/892/original/901379_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-6-retro-low-td-atmosphere-dv3529-102', 'flightClub': 'https://flightclub.com/air-jordan-6-retro-low-td-atmosphere-dv3529-102', 'stadiumGoods': ''}" +6be9efb2-0f73-4d3c-a928-6d9a3bd324e3,DC3432-141,Nike,NikeCourt Vapor Lite 'White Deep Royal Blue',White/Deep Royal Blue,men,NikeCourt Vapor,2022,2022-03-22,80,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/605/original/DC3432_141.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/605/original/DC3432_141.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/605/original/DC3432_141.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/nikecourt-vapor-lite-white-deep-royal-blue-dc3432-141', 'flightClub': 'https://flightclub.com/nikecourt-vapor-lite-white-deep-royal-blue-dc3432-141', 'stadiumGoods': ''}" +734739ee-6f8b-4f6a-9f62-b5e60cb5ee32,DN3596-001,Nike,Jordan Play Slide GS 'Cool Grey',Cool Grey/Photon Dust/Aviator Grey/Iron Grey,youth,Jordan Play Slide,2022,2022-03-22,40,40,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/634/original/DN3596_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/634/original/DN3596_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/634/original/DN3596_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jordan-play-slide-gs-cool-grey-dn3596-001', 'flightClub': 'https://flightclub.com/jordan-play-slide-gs-cool-grey-dn3596-001', 'stadiumGoods': ''}" +75939219-0f02-4ab7-8eeb-e20733a744df,3024015-105,Under Armour,Blur Smoke 'White Metallic Gold',White/Metallic Gold,men,Blur Smoke,2022,2022-03-22,120,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/449/original/3024015_105.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/449/original/3024015_105.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/449/original/3024015_105.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/blur-smoke-white-metallic-gold-3024015-105', 'flightClub': 'https://flightclub.com/blur-smoke-white-metallic-gold-3024015-105', 'stadiumGoods': ''}" +76bba941-6dfa-46aa-908a-686f6da290b6,3025052-003,Under Armour,TriBase Reign 4 'Black',Black,men,Reign 4,2022,2022-03-22,120,195,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/500/original/3025052_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/500/original/3025052_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/500/original/3025052_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/tribase-reign-4-black-3025052-003', 'flightClub': 'https://flightclub.com/tribase-reign-4-black-3025052-003', 'stadiumGoods': ''}" +7846c737-8ba0-475b-b90d-aaddd0de7cf7,GY5908,Reebok,Wmns Slip 2 'Core Black',Core Black/Core Black/Footwear White,women,Slip 2,2022,2022-03-22,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/756/original/GY5908.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/756/original/GY5908.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/756/original/GY5908.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-slip-2-core-black-gy5908', 'flightClub': 'https://flightclub.com/wmns-slip-2-core-black-gy5908', 'stadiumGoods': ''}" +7c3481cc-15ed-4663-b7d4-e2c7529a07f1,GW7508,adidas,X Speedflow.3 TF 'Sky Rush Team Shock Pink',Sky Rush/Team Shock Pink/Cloud White,men,X Speedflow.3,2022,2022-03-22,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/713/original/GW7508.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/713/original/GW7508.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/713/original/GW7508.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/x-speedflow-3-tf-sky-rush-team-shock-pink-gw7508', 'flightClub': 'https://flightclub.com/x-speedflow-3-tf-sky-rush-team-shock-pink-gw7508', 'stadiumGoods': ''}" +85ee8b73-6c51-4e8b-9361-f3cf06aeb0e6,DH0222-101,Nike,Wmns NikeCourt Zoom NXT 'White Metallic Silver',White/Grey Fog/Metallic Silver,women,NikeCourt Zoom NXT,2022,2022-03-22,140,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/614/original/DH0222_101.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/614/original/DH0222_101.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/614/original/DH0222_101.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nikecourt-zoom-nxt-white-metallic-silver-dh0222-101', 'flightClub': 'https://flightclub.com/wmns-nikecourt-zoom-nxt-white-metallic-silver-dh0222-101', 'stadiumGoods': ''}" +8f0b0989-cdc5-4bff-8b1b-e0ecd2b4c489,GX4088,adidas,Tour 360 22 'White Collegiate Navy',Cloud White/Collegiate Navy/Silver Metallic,men,Tour 360,2022,2022-03-22,210,233,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/840/583/original/GX4088.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/840/583/original/GX4088.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/840/583/original/GX4088.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/tour-360-22-white-collegiate-navy-gx4088', 'flightClub': 'https://flightclub.com/tour-360-22-white-collegiate-navy-gx4088', 'stadiumGoods': ''}" +9148e6c8-8a21-4395-844d-c294ba9602c8,DV3528-102,Jordan,Air Jordan 6 Retro Low PS 'Atmosphere',White/Atmosphere/Infrared 23/Black,youth,Air Jordan 6,2022,2022-03-22,80,70,"Made for little kids, the Air Jordan 6 Retro Low PS ‘Atmosphere’ delivers a pastel colorway of the classic silhouette. A soft pink finish is applied to the leather upper, accented with perforated detailing and bolstered with white leather overlays along the midfoot and heel. Jumpman branding decorates the lace guard and back heel in vibrant pops of Infrared. The eye-catching hue is repeated on the lightweight foam midsole, supported underfoot by a pink semi-translucent rubber outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/067/283/019/original/DV3528_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/067/283/019/original/DV3528_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/067/283/019/original/DV3528_102.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-6-retro-low-ps-atmosphere-dv3528-102', 'flightClub': 'https://flightclub.com/air-jordan-6-retro-low-ps-atmosphere-dv3528-102', 'stadiumGoods': ''}" +96fba27d-bf91-4386-bc66-09e2608cd0bf,GZ3499,adidas,Swift Run 22 'White Grey',Cloud White/Grey Two/Core Black,men,Swift Run,2022,2022-03-22,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/762/original/GZ3499.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/762/original/GZ3499.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/762/original/GZ3499.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/swift-run-22-white-grey-gz3499', 'flightClub': 'https://flightclub.com/swift-run-22-white-grey-gz3499', 'stadiumGoods': ''}" +9ba752e6-9a08-4a17-8114-2a9e3e20c546,3025052-102,Under Armour,TriBase Reign 4 'Mod Grey',Mod Grey/Halo Grey,men,Reign 4,2022,2022-03-22,120,195,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/501/original/3025052_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/501/original/3025052_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/501/original/3025052_102.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/tribase-reign-4-mod-grey-3025052-102', 'flightClub': 'https://flightclub.com/tribase-reign-4-mod-grey-3025052-102', 'stadiumGoods': ''}" +9da85baf-523e-47a3-9dbf-149484404a58,CZ0222-261,Nike,Wmns NikeCourt Air Zoom Vapor Pro 'Pearl White Bleached Coral',Pearl White/White/Bleached Coral/Canyon Rust,women,Vapor Pro,2022,2022-03-22,120,200,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/599/original/CZ0222_261.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/599/original/CZ0222_261.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/599/original/CZ0222_261.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nikecourt-air-zoom-vapor-pro-pearl-white-bleached-coral-cz0222-261', 'flightClub': 'https://flightclub.com/wmns-nikecourt-air-zoom-vapor-pro-pearl-white-bleached-coral-cz0222-261', 'stadiumGoods': ''}" +9df65569-80ee-4d1e-9c1d-8daf27a4d50b,DQ8570-200,Nike,Nike Air Max 95 Medium Olive Black Rough Green,Medium Olive/Black-Rough Green,men,Air Max 95,2022,2022-03-22,180,150,,"{'360': ['https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585', 'https://images.stockx.com/360/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Images/Nike-Air-Max-95-Medium-Olive-Black-Rough-Green/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646411585'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/934/728/original/904676_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/934/728/original/904676_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/934/728/original/904676_00.png.png'}","{'stockX': 'https://stockx.com/nike-air-max-95-medium-olive-black-rough-green', 'goat': 'https://goat.com/sneakers/air-max-95-se-rough-green-dq8570-200', 'flightClub': 'https://flightclub.com/air-max-95-se-rough-green-dq8570-200', 'stadiumGoods': ''}" +9e15b21d-8455-46d3-b60d-2bea9af000ed,106773-01,Puma,Future Z 3.3 FG AG Jr 'Neon Citrus Black',Neon Citrus/Diamond Silver/Black,youth,Future Z 3.3,2022,2022-03-22,65,65,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/918/original/106773_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/918/original/106773_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/918/original/106773_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/future-z-3-3-fg-ag-jr-neon-citrus-black-106773-01', 'flightClub': 'https://flightclub.com/future-z-3-3-fg-ag-jr-neon-citrus-black-106773-01', 'stadiumGoods': ''}" +aa0ed6a7-d421-479c-a0b7-a0dd17cf3944,3024016-110,Under Armour,Flow Velociti SE 'White High-Vis Yellow',White/High-Vis Yellow,men,Flow Velociti,2022,2022-03-22,130,205,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/454/original/3024016_110.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/454/original/3024016_110.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/454/original/3024016_110.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/flow-velociti-se-white-high-vis-yellow-3024016-110', 'flightClub': 'https://flightclub.com/flow-velociti-se-white-high-vis-yellow-3024016-110', 'stadiumGoods': ''}" +aa77ae63-4d43-422f-831a-2776aa01297c,CZ5917-101,Nike,Wmns HyperDiamond 4 Elite 'White Game Royal',White/Game Royal/Racer Blue/Black,women,HyperDiamond,2022,2022-03-22,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/548/original/CZ5917_101.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/548/original/CZ5917_101.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/548/original/CZ5917_101.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-hyperdiamond-4-elite-white-game-royal-cz5917-101', 'flightClub': 'https://flightclub.com/wmns-hyperdiamond-4-elite-white-game-royal-cz5917-101', 'stadiumGoods': ''}" +af3790d6-77bf-47cb-8074-63893afdb85e,3024591-001,Under Armour,Wmns Charged Assert 9 'Black White',Black/White,women,Charged Assert,2022,2022-03-22,70,132,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/122/615/original/3024591_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/122/615/original/3024591_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/122/615/original/3024591_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-charged-assert-9-black-white-3024591-001', 'flightClub': 'https://flightclub.com/wmns-charged-assert-9-black-white-3024591-001', 'stadiumGoods': ''}" +b4472e51-714a-4684-a7f5-5dff0ef1d5c6,DH0654-001,Nike,Wmns Air Zoom Terra Kiger 8 'Black Anthracite',Black/Anthracite/Wolf Grey/Pure Platinum,women,Air Zoom Terra Kiger,2022,2022-03-22,140,139,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/617/original/DH0654_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/617/original/DH0654_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/617/original/DH0654_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-air-zoom-terra-kiger-8-black-anthracite-dh0654-001', 'flightClub': 'https://flightclub.com/wmns-air-zoom-terra-kiger-8-black-anthracite-dh0654-001', 'stadiumGoods': ''}" +b73e0181-52c1-45f5-84bc-39bbf1180403,G55281,Reebok,Classic Legacy AZ 'Grey Classic Burgundy',Pure Grey 3/Chalk/Classic Burgundy,men,Reebok Classic Legacy,2022,2022-03-22,120,177,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/695/original/G55281.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/695/original/G55281.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/695/original/G55281.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-legacy-az-grey-classic-burgundy-g55281', 'flightClub': 'https://flightclub.com/classic-legacy-az-grey-classic-burgundy-g55281', 'stadiumGoods': ''}" +bce0085e-5b7c-4589-a02b-4c2563745f76,GX8557,adidas,Fluidflow 2.0 'Grey Orbit Green',Grey Six/Core Black/Orbit Green,men,Fluidflow,2022,2022-03-22,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/741/original/GX8557.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/741/original/GX8557.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/741/original/GX8557.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fluidflow-2-0-grey-orbit-green-gx8557', 'flightClub': 'https://flightclub.com/fluidflow-2-0-grey-orbit-green-gx8557', 'stadiumGoods': ''}" +ca1d280c-cef3-42fd-a916-9ea8fd254ad4,DC2024-004,Jordan,Jordan Zion 1 PS 'Black Hyper Royal',Black/Hyper Royal/White,youth,Jordan Zion 1,2022,2022-03-22,65,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/554/original/DC2024_004.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/554/original/DC2024_004.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/554/original/DC2024_004.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/jordan-zion-1-ps-black-hyper-royal-dc2024-004', 'flightClub': 'https://flightclub.com/jordan-zion-1-ps-black-hyper-royal-dc2024-004', 'stadiumGoods': ''}" +cc740107-e112-49eb-bdf1-533654c328a9,DJ2846-484,Nike,Mercurial Vapor 14 Pro FG 'Chlorine Blue',Chlorine Blue/Marina/Laser Orange,men,Mercurial Vapor,2022,2022-03-22,140,197,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/623/original/DJ2846_484.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/623/original/DJ2846_484.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/623/original/DJ2846_484.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/mercurial-vapor-14-pro-fg-chlorine-blue-dj2846-484', 'flightClub': 'https://flightclub.com/mercurial-vapor-14-pro-fg-chlorine-blue-dj2846-484', 'stadiumGoods': ''}" +ce765fad-52b9-4134-aac9-026e0d2fec56,DQ4693-100,Nike,Wmns Air Max 270 'White Burnt Sunrise',White/Pink Oxford/Burnt Sunrise/Black,women,Air Max 270,2022,2022-03-22,150,180,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/650/original/DQ4693_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/650/original/DQ4693_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/650/original/DQ4693_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-air-max-270-white-burnt-sunrise-dq4693-100', 'flightClub': 'https://flightclub.com/wmns-air-max-270-white-burnt-sunrise-dq4693-100', 'stadiumGoods': ''}" +d2bea0cc-44f7-45e4-9b69-5777bfb15c6f,CW3096-124,Nike,Wmns React Ace Tour 'White Light Smoke Grey',White/Light Smoke Grey/Black,women,React Ace Tour,2022,2022-03-22,140,220,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/598/original/CW3096_124.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/598/original/CW3096_124.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/598/original/CW3096_124.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-react-ace-tour-white-light-smoke-grey-cw3096-124', 'flightClub': 'https://flightclub.com/wmns-react-ace-tour-white-light-smoke-grey-cw3096-124', 'stadiumGoods': ''}" +d2bfbd8e-1f90-4a09-b309-f73898cce4dd,3024015-403,Under Armour,Blur Smoke 'Team Royal Blue',Team Royal/White,men,Blur Smoke,2022,2022-03-22,120,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/451/original/3024015_403.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/451/original/3024015_403.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/451/original/3024015_403.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/blur-smoke-team-royal-blue-3024015-403', 'flightClub': 'https://flightclub.com/blur-smoke-team-royal-blue-3024015-403', 'stadiumGoods': ''}" +d79a1a71-9be8-484c-a238-91adc2960c02,CV0742-261,Nike,Wmns NikeCourt React Vapor NXT 'Pearl White',Pearl White/White/Bleached Coral/Canyon Rust,women,React Vapor NXT,2022,2022-03-22,160,240,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/592/original/CV0742_261.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/592/original/CV0742_261.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/592/original/CV0742_261.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nikecourt-react-vapor-nxt-pearl-white-cv0742-261', 'flightClub': 'https://flightclub.com/wmns-nikecourt-react-vapor-nxt-pearl-white-cv0742-261', 'stadiumGoods': ''}" +e10d61be-1f74-4202-a974-5502a1f3b3d4,DH0626-141,Nike,NikeCourt Zoom Lite 3 'White Deep Royal Blue',White/Deep Royal Blue,men,NikeCourt Zoom Lite 3,2022,2022-03-22,70,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/616/original/DH0626_141.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/616/original/DH0626_141.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/616/original/DH0626_141.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/nikecourt-zoom-lite-3-white-deep-royal-blue-dh0626-141', 'flightClub': 'https://flightclub.com/nikecourt-zoom-lite-3-white-deep-royal-blue-dh0626-141', 'stadiumGoods': ''}" +e7c3b5a1-d489-453b-9a59-eb4218de0b8c,1014A049-023,ASICS,Contend 5 GS 'Carrier Grey',Carrier Grey/Baltic Jewel,youth,Gel Contend,2022,2022-03-22,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/624/original/1014A049_023.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/624/original/1014A049_023.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/624/original/1014A049_023.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/contend-5-gs-carrier-grey-1014a049-023', 'flightClub': 'https://flightclub.com/contend-5-gs-carrier-grey-1014a049-023', 'stadiumGoods': ''}" +e8c00163-1520-4117-a04d-f79b377447bc,DH1042-261,Nike,Wmns NikeCourt Zoom Lite 3 'Pearl White Bleached Coral',Pearl White/White/Canyon Rust/Bleached Coral,women,NikeCourt Zoom Lite 3,2022,2022-03-22,70,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/619/original/DH1042_261.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/619/original/DH1042_261.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/619/original/DH1042_261.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nikecourt-zoom-lite-3-pearl-white-bleached-coral-dh1042-261', 'flightClub': 'https://flightclub.com/wmns-nikecourt-zoom-lite-3-pearl-white-bleached-coral-dh1042-261', 'stadiumGoods': ''}" +ee2fa3b9-8ae8-40da-b922-97afad59d92a,3025129-001,Under Armour,Charged Breeze 'Black Metallic Ore',Black/Metallic Ore,men,Charged Breeze,2022,2022-03-22,90,165,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/507/original/3025129_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/507/original/3025129_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/507/original/3025129_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/charged-breeze-black-metallic-ore-3025129-001', 'flightClub': 'https://flightclub.com/charged-breeze-black-metallic-ore-3025129-001', 'stadiumGoods': ''}" +04a78b98-96df-4ad2-bb07-64ee8e3c63aa,3024911-103,Under Armour,Wmns Flow Velociti Wind 'Halo Grey Fresco Blue',Halo Grey/Fresco Blue,women,Flow Velociti Wind,2022,2022-03-21,160,186,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/122/618/original/3024911_103.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/122/618/original/3024911_103.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/122/618/original/3024911_103.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-flow-velociti-wind-halo-grey-fresco-blue-3024911-103', 'flightClub': 'https://flightclub.com/wmns-flow-velociti-wind-halo-grey-fresco-blue-3024911-103', 'stadiumGoods': ''}" +17c49ae0-640a-43a5-8699-aafe7b0a96fd,CZ4665-002,Nike,Air Max Camden Slide GS 'Flat Pewter Siren Red',Flat Pewter/Black/Light Silver/Siren Red,youth,Air Max Camden,2022,2022-03-21,45,37,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/590/original/CZ4665_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/590/original/CZ4665_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/590/original/CZ4665_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-camden-slide-gs-flat-pewter-siren-red-cz4665-002', 'flightClub': 'https://flightclub.com/air-max-camden-slide-gs-flat-pewter-siren-red-cz4665-002', 'stadiumGoods': ''}" +1891aea6-3fd0-4ea3-8243-958954fd49bb,DJ6252-038,Jordan,Air Jordan 1 Low SE GS 'Drip',Black/Team Orange/Kumquat/White,youth,Air Jordan 1,2022,2022-03-21,75,106,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/769/452/original/DJ6252_038.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/769/452/original/DJ6252_038.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/769/452/original/DJ6252_038.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-1-low-se-gs-drip-dj6252-038', 'flightClub': 'https://flightclub.com/air-jordan-1-low-se-gs-drip-dj6252-038', 'stadiumGoods': ''}" +19dc0833-bfce-4211-b338-7a5e8dd40d56,CZ1685-106,Nike,Force 1 PS 'White Aura',White/Aura,youth,Force 1,2022,2022-03-21,65,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/589/original/CZ1685_106.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/589/original/CZ1685_106.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/589/original/CZ1685_106.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/force-1-ps-white-aura-cz1685-106', 'flightClub': 'https://flightclub.com/force-1-ps-white-aura-cz1685-106', 'stadiumGoods': ''}" +20a7212a-2e50-45e5-8072-2e76d0315e01,CD6892-111,Nike,Air Max Excee PS 'White Metallic Silver',White/Light Orewood Brown/Metallic Silver/Aura,youth,Air Max Excee,2022,2022-03-21,70,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/567/original/CD6892_111.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/567/original/CD6892_111.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/567/original/CD6892_111.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-excee-ps-white-metallic-silver-cd6892-111', 'flightClub': 'https://flightclub.com/air-max-excee-ps-white-metallic-silver-cd6892-111', 'stadiumGoods': ''}" +21d5b6a0-6cf9-4a58-886d-a0ff3535a9d5,DJ6573-101,Nike,Air Zoom Victory Tour 2 BOA 'White Photon Dust',White/Photon Dust/Marina,men,Air Zoom Victory Tour,2022,2022-03-21,210,290,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/625/original/DJ6573_101.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/625/original/DJ6573_101.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/625/original/DJ6573_101.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-zoom-victory-tour-2-boa-white-photon-dust-dj6573-101', 'flightClub': 'https://flightclub.com/air-zoom-victory-tour-2-boa-white-photon-dust-dj6573-101', 'stadiumGoods': ''}" +221795ca-91ce-4984-834b-9c01e133bcaf,WW840BK3-D,New Balance,Wmns 840v3 Wide 'Black',Black/White,women,840,2022,2022-03-21,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/804/original/WW840BK3_D.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/804/original/WW840BK3_D.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/804/original/WW840BK3_D.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-840v3-wide-black-ww840bk3-d', 'flightClub': 'https://flightclub.com/wmns-840v3-wide-black-ww840bk3-d', 'stadiumGoods': ''}" +22e3080a-69c7-4ab9-af80-65ecb56cd1a6,CW6735-100,Nike,Team Hustle D10 GS 'White Metallic Silver',White/Volt/Photon Dust/Metallic Silver,youth,Team Hustle D10,2022,2022-03-21,60,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/579/original/CW6735_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/579/original/CW6735_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/579/original/CW6735_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/team-hustle-d10-gs-white-metallic-silver-cw6735-100', 'flightClub': 'https://flightclub.com/team-hustle-d10-gs-white-metallic-silver-cw6735-100', 'stadiumGoods': ''}" +291be4ed-1f19-4a82-9795-026da104a254,DQ3558-001,Nike,Vapor Edge Elite 360 Flyknit 'Black Dark Smoke Grey',Black/Dark Smoke Grey/Smoke Grey/White,men,Vapor Edge,2022,2022-03-21,200,280,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/643/original/DQ3558_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/643/original/DQ3558_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/643/original/DQ3558_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/vapor-edge-elite-360-flyknit-black-dark-smoke-grey-dq3558-001', 'flightClub': 'https://flightclub.com/vapor-edge-elite-360-flyknit-black-dark-smoke-grey-dq3558-001', 'stadiumGoods': ''}" +2bac684b-e461-454a-a570-642d1a165140,GY6491,adidas,adidas Stan Smith Southpark Stan Marsh,Blue/Red/White,men,Stan Smith,2022,2022-03-21,100,114,"The South Park x adidas Stan Smith ‘Stan’ celebrates the popular animated sitcom with a special-edition colorway of the venerable court shoe. Inspired by Stan Marsh, the sneaker makes use of a blue synthetic leather upper composed of 50% recycled content. Perforated three-stripes adorn the quarter panel, while a thin overlay in shaggy red suede extends lengthwise across the base of the upper. Unique branding elements include ‘Stan Marsh’ debossed on the heel tab, along with the character’s likeness displayed on the blue suede tongue.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/987/634/original/897949_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/987/634/original/897949_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/987/634/original/897949_00.png.png'}","{'stockX': 'https://stockx.com/adidas-stan-smith-southpark-stan-marsh', 'goat': 'https://goat.com/sneakers/south-park-x-stan-smith-stan-gy6491', 'flightClub': 'https://flightclub.com/south-park-x-stan-smith-stan-gy6491', 'stadiumGoods': ''}" +2da56af2-3dd4-4761-abc2-d58e645de06b,WW840GP3-2E,New Balance,Wmns 840v3 2E Wide 'White Silent Grey',White/Silent Grey,women,840,2022,2022-03-21,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/808/original/WW840GP3_2E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/808/original/WW840GP3_2E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/808/original/WW840GP3_2E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-840v3-2e-wide-white-silent-grey-ww840gp3-2e', 'flightClub': 'https://flightclub.com/wmns-840v3-2e-wide-white-silent-grey-ww840gp3-2e', 'stadiumGoods': ''}" +2f8db6eb-425a-420e-b19a-ceccef459b83,WTMORLG2-D,New Balance,Wmns Fresh Foam X More Trail v2 Wide 'Garnet',Garnet/Harvest Gold,women,Fresh Foam X More,2022,2022-03-21,165,235,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/798/original/WTMORLG2_D.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/798/original/WTMORLG2_D.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/798/original/WTMORLG2_D.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-fresh-foam-x-more-trail-v2-wide-garnet-wtmorlg2-d', 'flightClub': 'https://flightclub.com/wmns-fresh-foam-x-more-trail-v2-wide-garnet-wtmorlg2-d', 'stadiumGoods': ''}" +32889124-0c3d-48f7-aa1e-2924c23c37c2,DO5065-001,Nike,Revolution 6 FlyEase 4E GS 'Black Dark Smoke Grey',Black/Dark Smoke Grey/Black,youth,Revolution 6,2022,2022-03-21,60,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/619/original/DO5065_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/619/original/DO5065_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/619/original/DO5065_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/revolution-6-flyease-4e-gs-black-dark-smoke-grey-do5065-001', 'flightClub': 'https://flightclub.com/revolution-6-flyease-4e-gs-black-dark-smoke-grey-do5065-001', 'stadiumGoods': ''}" +333f9db1-625e-43b9-b5c5-045a4955aade,WW840BK3-2E,New Balance,Wmns 840v3 2E Wide 'Black',Black/White,women,840,2022,2022-03-21,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/802/original/WW840BK3_2E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/802/original/WW840BK3_2E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/802/original/WW840BK3_2E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-840v3-2e-wide-black-ww840bk3-2e', 'flightClub': 'https://flightclub.com/wmns-840v3-2e-wide-black-ww840bk3-2e', 'stadiumGoods': ''}" +358b803f-ab26-4fd6-a514-f72dd72c39a8,GX8548,adidas,Wmns Astir 'Orbit Green Wonder White',Orbit Green/Wonder White/Gold Metallic,women,Astir,2022,2022-03-21,100,169,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/740/original/GX8548.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/740/original/GX8548.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/740/original/GX8548.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-astir-orbit-green-wonder-white-gx8548', 'flightClub': 'https://flightclub.com/wmns-astir-orbit-green-wonder-white-gx8548', 'stadiumGoods': ''}" +3f021fed-8036-4029-ad5f-a3dfadf3134e,CW997HCY,New Balance,Wmns 997H 'Black Bubblegum',Black/Bubblegum,women,997H,2022,2022-03-21,90,175,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/588/original/CW997HCY.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/588/original/CW997HCY.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/588/original/CW997HCY.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-997h-black-bubblegum-cw997hcy', 'flightClub': 'https://flightclub.com/wmns-997h-black-bubblegum-cw997hcy', 'stadiumGoods': ''}" +441fd1c8-9d1e-43a3-ae05-893bf284002b,GY8114,adidas,Daily 3.0 'Focus Olive',Focus Olive/Cloud White/Core Black,men,Daily 3.0,2022,2022-03-21,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/757/original/GY8114.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/757/original/GY8114.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/757/original/GY8114.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/daily-3-0-focus-olive-gy8114', 'flightClub': 'https://flightclub.com/daily-3-0-focus-olive-gy8114', 'stadiumGoods': ''}" +4512368e-25c7-4916-bdbc-634611d65ae3,GY6493,adidas,adidas Forum Low South Park Cartman,Red/Yellow/Teal,men,Forum,2022,2022-03-21,100,67,"The South Park x adidas Forum Low ‘Cartman’ celebrates the animated series with a shoe dedicated to one of its most popular characters. The vintage silhouette is dressed in colors that recall Eric Cartman’s signature outfit, highlighted by a crimson leather upper with yellow laces and contrasting black three-stripes. Vibrant turquoise accents appear on the adjustable ankle strap, collar lining and heel overlay. The low-top rides on a solid white midsole, fitted with a cushioned EVA wedge and reinforced by a durable black rubber outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/987/628/original/897952_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/987/628/original/897952_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/987/628/original/897952_00.png.png'}","{'stockX': 'https://stockx.com/adidas-forum-low-south-park-cartman', 'goat': 'https://goat.com/sneakers/south-park-x-forum-low-cartman-gy6493', 'flightClub': 'https://flightclub.com/south-park-x-forum-low-cartman-gy6493', 'stadiumGoods': ''}" +49547267-8b83-4db4-bc6a-d443e122da14,GY6522,Reebok,Wmns Flexagon Force 3 Wide 'Black Pursuit Pink',Core Black/Maroon/Pursuit Pink,women,Flexagon,2022,2022-03-21,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/677/original/GY6522.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/677/original/GY6522.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/677/original/GY6522.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-flexagon-force-3-wide-black-pursuit-pink-gy6522', 'flightClub': 'https://flightclub.com/wmns-flexagon-force-3-wide-black-pursuit-pink-gy6522', 'stadiumGoods': ''}" +4c2e86f0-6ac3-4423-9bcc-fe39418dc4c8,DQ8577-100,Jordan,Air Jordan 1 Centre Court 'White Gold',White/Metallic Gold/Light Orewood Brown,men,Air Jordan 1,2022,2022-03-21,135,117,"The Air Jordan 1 Centre Court ‘White Gold’ enlivens the minimalist lifestyle sneaker with gilded accents. White synthetic leather is utilized on the streamlined upper, featuring an ‘exploded’ Wings logo in metallic gold embroidery throughout the heel. A standard Wings logo adorns the heel tab, while ‘Air Jordan’ is inscribed across the tongue in gold lettering. The low-top rides on a standard Air Jordan 1 cupsole with encapsulated Air-sole cushioning in the heel. The latter works in tandem with a Zoom Air unit embedded in the sockliner.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/625/original/DQ8577_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/625/original/DQ8577_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/625/original/DQ8577_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-1-centre-court-white-gold-dq8577-100', 'flightClub': 'https://flightclub.com/air-jordan-1-centre-court-white-gold-dq8577-100', 'stadiumGoods': ''}" +5073ad6b-b87c-4bca-8eff-76f428e021af,CW6736-607,Nike,Team Hustle D10 PS 'University Red Black',University Red/Particle Grey/Black/White,youth,Team Hustle D10,2022,2022-03-21,55,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/584/original/CW6736_607.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/584/original/CW6736_607.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/584/original/CW6736_607.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/team-hustle-d10-ps-university-red-black-cw6736-607', 'flightClub': 'https://flightclub.com/team-hustle-d10-ps-university-red-black-cw6736-607', 'stadiumGoods': ''}" +51290bd9-73ca-42a6-aac0-810eecdc3014,WS327PAB,New Balance,Wmns 327 'White Morning Fog Gum',White/Morning Fog,women,327,2022,2022-03-21,100,148,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/796/original/WS327PAB.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/796/original/WS327PAB.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/796/original/WS327PAB.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-327-white-morning-fog-gum-ws327pab', 'flightClub': 'https://flightclub.com/wmns-327-white-morning-fog-gum-ws327pab', 'stadiumGoods': ''}" +51c80a22-2be9-4016-b175-ba2e544350bd,G55282,Reebok,Classic Legacy AZ 'Digital Blue',Digital Blue/Chalk/Core Black,men,Reebok Classic Legacy,2022,2022-03-21,120,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/696/original/G55282.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/696/original/G55282.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/696/original/G55282.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-legacy-az-digital-blue-g55282', 'flightClub': 'https://flightclub.com/classic-legacy-az-digital-blue-g55282', 'stadiumGoods': ''}" +5371dd6b-97a6-4784-9af0-93358d94c533,DH8640-102,Nike,Nike Blazer Mid 77 SE White White Black White (GS),White/White/Black/White,child,Blazer,2022,2022-03-21,95,92,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/609/original/DH8640_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/609/original/DH8640_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/609/original/DH8640_102.png.png'}","{'stockX': 'https://stockx.com/nike-blazer-mid-77-se-white-white-black-white-gs', 'goat': 'https://goat.com/sneakers/blazer-mid-77-se-gs-dance-white-black-dh8640-102', 'flightClub': 'https://flightclub.com/blazer-mid-77-se-gs-dance-white-black-dh8640-102', 'stadiumGoods': ''}" +553027cf-02b1-466a-baee-ca253006eef9,MS327GA,New Balance,327 'Victory Blue White',Victory Blue/White,men,327,2022,2022-03-21,100,175,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/722/original/MS327GA.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/722/original/MS327GA.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/722/original/MS327GA.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/327-victory-blue-white-ms327ga', 'flightClub': 'https://flightclub.com/327-victory-blue-white-ms327ga', 'stadiumGoods': ''}" +578edf0d-f7c0-4304-9e50-e1c66e104ca8,DO5065-003,Nike,Revolution 6 FlyEase 4E GS 'Black White',Black/Dark Smoke Grey/White,youth,Revolution 6,2022,2022-03-21,60,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/622/original/DO5065_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/622/original/DO5065_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/622/original/DO5065_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/revolution-6-flyease-4e-gs-black-white-do5065-003', 'flightClub': 'https://flightclub.com/revolution-6-flyease-4e-gs-black-white-do5065-003', 'stadiumGoods': ''}" +5d99ce5b-43fc-41ef-ae91-dbce01fcff66,CW997HCV,New Balance,Wmns 997H 'Natural Indigo Libra',Natural Indigo/Libra,women,997H,2022,2022-03-21,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/586/original/CW997HCV.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/586/original/CW997HCV.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/586/original/CW997HCV.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-997h-natural-indigo-libra-cw997hcv', 'flightClub': 'https://flightclub.com/wmns-997h-natural-indigo-libra-cw997hcv', 'stadiumGoods': ''}" +5e5c27bd-872c-4d27-af97-45a30c3bc448,3024911-003,Under Armour,Wmns Flow Velociti Wind 'Black White',Black/White,women,Flow Velociti Wind,2022,2022-03-21,160,235,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/481/original/3024911_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/481/original/3024911_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/481/original/3024911_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-flow-velociti-wind-black-white-3024911-003', 'flightClub': 'https://flightclub.com/wmns-flow-velociti-wind-black-white-3024911-003', 'stadiumGoods': ''}" +62a8f37c-9c58-4069-be74-471380f86924,GY6490,adidas,adidas Superstar South Park Kyle,Green/Orange/Off White,men,Superstar,2022,2022-03-21,100,97,"Launching as part of a footwear collection celebrating the long-running animated sitcom, the South Park x adidas Superstar ‘Kyle’ delivers a colorful take on the iconic shell-toed sneaker. Inspired by Kyle Broflovski, the low-top carries a green leather upper with fuzzy lime green textile on the Trefoil-branded heel tab and signature three-stripes. Contrasting orange accents land on the laces and tongue, the latter equipped with a snap-closure pocket. Dual adidas and South Park branding adorns the custom sockliner.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/878/988/original/897948_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/878/988/original/897948_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/878/988/original/897948_00.png.png'}","{'stockX': 'https://stockx.com/adidas-superstar-south-park-kyle', 'goat': 'https://goat.com/sneakers/south-park-x-superstar-kyle-gy6490', 'flightClub': 'https://flightclub.com/south-park-x-superstar-kyle-gy6490', 'stadiumGoods': ''}" +63f97b6a-6fb0-48f4-8b76-26cb06edc0a0,CN9676-600,Nike,Wmns Victori One Slide 'Floral - Pink',Rose Whisper/Active Pink/Light Curry/Sail,women,Victori One,2022,2022-03-21,35,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/573/original/CN9676_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/573/original/CN9676_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/573/original/CN9676_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-victori-one-slide-floral-pink-cn9676-600', 'flightClub': 'https://flightclub.com/wmns-victori-one-slide-floral-pink-cn9676-600', 'stadiumGoods': ''}" +6fa43bd7-0664-4ec7-be2d-bf3fc1a98856,CD6864-016,Nike,Air Max 90 Leather GS 'Black Dark Smoke Grey',Black/Dark Smoke Grey/Iron Grey/Chrome,youth,Air Max 90,2022,2022-03-21,100,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/565/original/CD6864_016.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/565/original/CD6864_016.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/565/original/CD6864_016.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-90-leather-gs-black-dark-smoke-grey-cd6864-016', 'flightClub': 'https://flightclub.com/air-max-90-leather-gs-black-dark-smoke-grey-cd6864-016', 'stadiumGoods': ''}" +733d2045-de56-4ddb-a474-c79bd916f280,MS327CB,New Balance,327 'Black Team Red',Black/Team Red,men,327,2022,2022-03-21,100,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/721/original/MS327CB.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/721/original/MS327CB.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/721/original/MS327CB.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/327-black-team-red-ms327cb', 'flightClub': 'https://flightclub.com/327-black-team-red-ms327cb', 'stadiumGoods': ''}" +7a6bdd3f-58a6-4de4-aa7c-a126cc2f2587,GY6492,adidas,adidas NMD R1 South Park Kenny,Orange/Black,men,NMD Runner,2022,2022-03-21,130,133,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/094/688/original/916400_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/094/688/original/916400_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/094/688/original/916400_00.png.png'}","{'stockX': 'https://stockx.com/adidas-nmd-r1-south-park-kenny', 'goat': 'https://goat.com/sneakers/south-park-x-nmd_r1-kenny-gy6492', 'flightClub': 'https://flightclub.com/south-park-x-nmd_r1-kenny-gy6492', 'stadiumGoods': ''}" +7f6e70bc-9c15-46b4-8c25-2bff0e869110,DQ8577-001,Jordan,Air Jordan 1 Centre Court 'Black Pink',Black/White/Metallic Gold/Mystic Hibiscus,men,Air Jordan 1,2022,2022-03-21,135,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/624/original/DQ8577_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/624/original/DQ8577_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/624/original/DQ8577_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-1-centre-court-black-pink-dq8577-001', 'flightClub': 'https://flightclub.com/air-jordan-1-centre-court-black-pink-dq8577-001', 'stadiumGoods': ''}" +800ee6fa-bbc5-47bf-ad89-31de1d76b9fa,GY6477,adidas,adidas NMD R1 South Park Professor Chaos,Cyan/Silver Metallic,men,NMD Runner,2022,2022-03-21,160,120,"The South Park x adidas NMD_R1 V2 ‘Professor Chaos’ celebrates the long-running animated series with a colorful design inspired by Butter Stotch’s supervillain alter-ego. Yellow rope laces secure a turquoise-colored textile knit upper, featuring crinkly silver foil on the signature three-stripes and heel overlay. The character’s red-dot emblem decorates the tongue tag, while ‘Professor Chaos’ is inscribed across the heel strap. Responsive cushioning is provided by a full-length Boost midsole, painted silver and supported by a durable green rubber outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/065/757/413/original/GY6477.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/065/757/413/original/GY6477.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/065/757/413/original/GY6477.png.png'}","{'stockX': 'https://stockx.com/adidas-nmd-r1-south-park-professor-chaos', 'goat': 'https://goat.com/sneakers/south-park-x-nmd_r1-v2-professor-chaos-gy6477', 'flightClub': 'https://flightclub.com/south-park-x-nmd_r1-v2-professor-chaos-gy6477', 'stadiumGoods': ''}" +8142530e-393b-4b10-abf1-6ba7e7de3203,CD6893-019,Nike,Air Max Excee TD 'Grey Fog Flat Pewter',Grey Fog/Flat Pewter/Atomic Green/White,infant,Air Max Excee,2022,2022-03-21,55,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/569/original/CD6893_019.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/569/original/CD6893_019.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/569/original/CD6893_019.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-excee-td-grey-fog-flat-pewter-cd6893-019', 'flightClub': 'https://flightclub.com/air-max-excee-td-grey-fog-flat-pewter-cd6893-019', 'stadiumGoods': ''}" +81547272-e5c9-48bd-a17a-d690a326a340,WXMTRCS1-D,New Balance,Wmns Minimus TR Wide 'Team Red Black',Team Red/Black/White,women,Minimus TR,2022,2022-03-21,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/813/original/WXMTRCS1_D.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/813/original/WXMTRCS1_D.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/813/original/WXMTRCS1_D.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-minimus-tr-wide-team-red-black-wxmtrcs1-d', 'flightClub': 'https://flightclub.com/wmns-minimus-tr-wide-team-red-black-wxmtrcs1-d', 'stadiumGoods': ''}" +8479d719-e41d-41ef-9a6f-a0135cce3e27,DH0222-091,Nike,Wmns NikeCourt Zoom NXT 'Black Metallic Red Bronze',Black/White/Metallic Red Bronze,women,NikeCourt Zoom NXT,2022,2022-03-21,140,220,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/611/original/DH0222_091.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/611/original/DH0222_091.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/611/original/DH0222_091.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nikecourt-zoom-nxt-black-metallic-red-bronze-dh0222-091', 'flightClub': 'https://flightclub.com/wmns-nikecourt-zoom-nxt-black-metallic-red-bronze-dh0222-091', 'stadiumGoods': ''}" +8569558b-4e64-4fca-b8a9-937ffe812f4d,GX8287,adidas,Wmns Fluidflow 2.0 'Aluminium Matte Silver',Aluminium/Matte Silver/Sandy Beige Metallic,women,Fluidflow,2022,2022-03-21,80,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/739/original/GX8287.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/739/original/GX8287.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/739/original/GX8287.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-fluidflow-2-0-aluminium-matte-silver-gx8287', 'flightClub': 'https://flightclub.com/wmns-fluidflow-2-0-aluminium-matte-silver-gx8287', 'stadiumGoods': ''}" +87fa8ab8-cbd0-4ff0-a28d-6bd93ebca816,DD9624-001,Nike,Wmns Air Force 1 High 'Triple Black',Black/Black/Black/Black,women,Air Force 1,2022,2022-03-21,115,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/604/original/DD9624_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/604/original/DD9624_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/604/original/DD9624_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-air-force-1-high-triple-black-dd9624-001', 'flightClub': 'https://flightclub.com/wmns-air-force-1-high-triple-black-dd9624-001', 'stadiumGoods': ''}" +9417f50b-87e2-4c7d-9dc5-839b29db65fc,DB9562-602,Nike,Sunray Adjust 5 V2 GS 'Crimson Bliss',Crimson Bliss/Light Violet/Metallic Platinum,youth,Sunray Adjust 5,2022,2022-03-21,35,113,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/595/original/DB9562_602.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/595/original/DB9562_602.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/595/original/DB9562_602.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/sunray-adjust-5-v2-gs-crimson-bliss-db9562-602', 'flightClub': 'https://flightclub.com/sunray-adjust-5-v2-gs-crimson-bliss-db9562-602', 'stadiumGoods': ''}" +94fdf618-ae25-4d7b-87e6-015991ff1d21,CW6735-607,Nike,Team Hustle D10 GS 'University Red Black',University Red/Particle Grey/Black/White,youth,Team Hustle D10,2022,2022-03-21,60,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/580/original/CW6735_607.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/580/original/CW6735_607.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/580/original/CW6735_607.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/team-hustle-d10-gs-university-red-black-cw6735-607', 'flightClub': 'https://flightclub.com/team-hustle-d10-gs-university-red-black-cw6735-607', 'stadiumGoods': ''}" +957f81f5-8ff6-4180-bdb0-0b78f1b27dc2,WW840GP3,New Balance,Wmns 840v3 'White Silent Grey',White/Silent Grey,women,840,2022,2022-03-21,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/811/original/WW840GP3.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/811/original/WW840GP3.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/811/original/WW840GP3.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-840v3-white-silent-grey-ww840gp3', 'flightClub': 'https://flightclub.com/wmns-840v3-white-silent-grey-ww840gp3', 'stadiumGoods': ''}" +9693a7dc-2a4f-4503-aba4-0dec85a37dee,MS327GC,New Balance,327 'Vintage Orange',Vintage Orange/White,men,327,2022,2022-03-21,100,175,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/723/original/MS327GC.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/723/original/MS327GC.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/723/original/MS327GC.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/327-vintage-orange-ms327gc', 'flightClub': 'https://flightclub.com/327-vintage-orange-ms327gc', 'stadiumGoods': ''}" +99b436d9-7634-4e7d-8ede-eb886a723e19,WTMORLG2,New Balance,Wmns Fresh Foam X More Trail v2 'Garnet',Garnet/Harvest Gold,women,Fresh Foam X More,2022,2022-03-21,165,235,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/800/original/WTMORLG2.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/800/original/WTMORLG2.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/800/original/WTMORLG2.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-fresh-foam-x-more-trail-v2-garnet-wtmorlg2', 'flightClub': 'https://flightclub.com/wmns-fresh-foam-x-more-trail-v2-garnet-wtmorlg2', 'stadiumGoods': ''}" +9a5255e7-fc32-4702-ae9a-ab235e69e839,3024911-004,Under Armour,Wmns Flow Velociti Wind 'Black Electro Pink',Black/Electro Pink,women,Flow Velociti Wind,2022,2022-03-21,160,133,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/122/616/original/3024911_004.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/122/616/original/3024911_004.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/122/616/original/3024911_004.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-flow-velociti-wind-black-electro-pink-3024911-004', 'flightClub': 'https://flightclub.com/wmns-flow-velociti-wind-black-electro-pink-3024911-004', 'stadiumGoods': ''}" +9bdc9aaf-9edf-44a9-8303-0cdaf3d01967,DH9523-700,Nike,Wmns Waffle Debut 'Vivid Sulfur Light Photo Blue',Vivid Sulfur/Sanded Gold/University Gold/Light Photo Blue,women,Waffle Debut,2022,2022-03-21,70,124,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/612/original/DH9523_700.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/612/original/DH9523_700.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/612/original/DH9523_700.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-waffle-debut-vivid-sulfur-light-photo-blue-dh9523-700', 'flightClub': 'https://flightclub.com/wmns-waffle-debut-vivid-sulfur-light-photo-blue-dh9523-700', 'stadiumGoods': ''}" +9cf26dcd-59bf-470a-a20f-deea7663b6ca,HQ6316,adidas,adidas Yeezy Boost 350 V2 Bone,Bone/Bone/Bone,men,Yeezy Boost 350,2022,2022-03-21,230,254,"The Yeezy Boost 350 V2 ‘Pure Oat’ treats the lifestyle runner to a refined makeover, highlighted by a breathable Primeknit upper in a subtle ivory finish. A monofilament side stripe adds a see-through element to the minimalist design, while a webbing pull tab at the heel provides easy on and off. Inside the shoe, three-stripe branding on the interior heel is accompanied by ‘Yeezy’ stamped on the sockliner. Responsive cushioning comes courtesy of a TPU-wrapped full-length Boost midsole.","{'360': ['https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664', 'https://images.stockx.com/360/adidas-Yeezy-Boost-350-V2-Pure-Oat/Images/adidas-Yeezy-Boost-350-V2-Pure-Oat/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503664'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/692/759/original/896849_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/692/759/original/896849_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/692/759/original/896849_00.png.png'}","{'stockX': 'https://stockx.com/adidas-yeezy-boost-350-v2-bone', 'goat': 'https://goat.com/sneakers/yeezy-boost-350-v2-pure-oat-hq6316', 'flightClub': 'https://flightclub.com/yeezy-boost-350-v2-pure-oat-hq6316', 'stadiumGoods': ''}" +ac68366d-9bc4-4ee2-a871-bb40d10f1cb0,682399-WIB92-9676,Alexander McQueen,Alexander McQueen Oversized Sneaker 'White Lust Red',White/Lust Red,men,Alexander McQueen Oversized Sneaker,2022,2022-03-21,0,450,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/048/807/original/682399_WIB92_9676.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/048/807/original/682399_WIB92_9676.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/048/807/original/682399_WIB92_9676.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/alexander-mcqueen-oversized-sneaker-white-lust-red-682399-wib92-9676', 'flightClub': 'https://flightclub.com/alexander-mcqueen-oversized-sneaker-white-lust-red-682399-wib92-9676', 'stadiumGoods': ''}" +acca28e1-6d7c-4dad-9524-18c3fe4e2a0d,ML574OV2,New Balance,574 'Tan Blue',Tan/Blue,men,574,2022,2022-03-21,85,127,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/715/original/ML574OV2.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/715/original/ML574OV2.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/715/original/ML574OV2.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/574-tan-blue-ml574ov2', 'flightClub': 'https://flightclub.com/574-tan-blue-ml574ov2', 'stadiumGoods': ''}" +b01301e7-d755-408f-86d9-112e53941a8e,GX7229,Reebok,Freestyle High Little Kid 'Vector Red',Vector Red/Vector Red/Footwear White,youth,Freestyle,2022,2022-03-21,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/669/original/GX7229.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/669/original/GX7229.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/669/original/GX7229.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freestyle-high-little-kid-vector-red-gx7229', 'flightClub': 'https://flightclub.com/freestyle-high-little-kid-vector-red-gx7229', 'stadiumGoods': ''}" +b0240ce1-7aa7-42e0-8298-d1028e4bcd98,MXMTRCS1,New Balance,Minimus TR 'Team Red Black',Team Red/Black/White,men,Minimus TR,2022,2022-03-21,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/725/original/MXMTRCS1.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/725/original/MXMTRCS1.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/725/original/MXMTRCS1.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/minimus-tr-team-red-black-mxmtrcs1', 'flightClub': 'https://flightclub.com/minimus-tr-team-red-black-mxmtrcs1', 'stadiumGoods': ''}" +b379816b-385f-46de-b8ce-26ef5fb11460,CJ3818-405,Nike,Wearallday TD 'Aura Worn Blue',Aura/Worn Blue/White,infant,Wearallday,2022,2022-03-21,45,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/571/original/CJ3818_405.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/571/original/CJ3818_405.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/571/original/CJ3818_405.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wearallday-td-aura-worn-blue-cj3818-405', 'flightClub': 'https://flightclub.com/wearallday-td-aura-worn-blue-cj3818-405', 'stadiumGoods': ''}" +b5bc3642-c6c7-4d1c-9cc4-b6a44b44ffa4,CW6736-010,Nike,Team Hustle D10 PS 'Black Game Royal',Black/Game Royal/White,youth,Team Hustle D10,2022,2022-03-21,55,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/581/original/CW6736_010.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/581/original/CW6736_010.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/581/original/CW6736_010.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/team-hustle-d10-ps-black-game-royal-cw6736-010', 'flightClub': 'https://flightclub.com/team-hustle-d10-ps-black-game-royal-cw6736-010', 'stadiumGoods': ''}" +bcab2538-4640-4b8d-8ff0-4fba5989442f,WXMTRCS1,New Balance,Wmns Minimus TR 'Team Red Black',Team Red/Black/White,women,Minimus TR,2022,2022-03-21,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/738/original/WXMTRCS1.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/738/original/WXMTRCS1.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/738/original/WXMTRCS1.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-minimus-tr-team-red-black-wxmtrcs1', 'flightClub': 'https://flightclub.com/wmns-minimus-tr-team-red-black-wxmtrcs1', 'stadiumGoods': ''}" +bd5ea983-2ca9-414d-bfd0-424bcf3c3726,DH0626-010,Nike,Court Zoom Lite 3 'Black White',Black/White,men,NikeCourt Zoom Lite 3,2022,2022-03-21,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/606/original/DH0626_010.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/606/original/DH0626_010.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/606/original/DH0626_010.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/court-zoom-lite-3-black-white-dh0626-010', 'flightClub': 'https://flightclub.com/court-zoom-lite-3-black-white-dh0626-010', 'stadiumGoods': ''}" +c792a60a-b54d-4e5e-b7f9-f001d9494970,MXMTRCS1-2E,New Balance,Minimus TR 2E Wide 'Team Red Black',Team Red/Black/White,men,Minimus TR,2022,2022-03-21,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/775/original/MXMTRCS1_2E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/775/original/MXMTRCS1_2E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/775/original/MXMTRCS1_2E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/minimus-tr-2e-wide-team-red-black-mxmtrcs1-2e', 'flightClub': 'https://flightclub.com/minimus-tr-2e-wide-team-red-black-mxmtrcs1-2e', 'stadiumGoods': ''}" +cc0cf5d2-54e0-4b1f-a197-4b666f094a56,GY5482,adidas,Daily 3.0 'Grey Black Gum',Grey Six/Core Black/Gum,men,Daily 3.0,2022,2022-03-21,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/753/original/GY5482.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/753/original/GY5482.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/753/original/GY5482.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/daily-3-0-grey-black-gum-gy5482', 'flightClub': 'https://flightclub.com/daily-3-0-grey-black-gum-gy5482', 'stadiumGoods': ''}" +cc31c263-6323-4dae-9aa0-ce8193731ad5,DN3970-001,Nike,Kawa SE Slide GS 'Black Pure Platinum Camo',Black/Black/Pure Platinum,youth,Kawa,2022,2022-03-21,28,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/617/original/DN3970_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/617/original/DN3970_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/617/original/DN3970_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/kawa-se-slide-gs-black-pure-platinum-camo-dn3970-001', 'flightClub': 'https://flightclub.com/kawa-se-slide-gs-black-pure-platinum-camo-dn3970-001', 'stadiumGoods': ''}" +d1e45d89-a3ec-461d-8228-f38d23a10b0d,WW840GP3-D,New Balance,Wmns 840v3 Wide 'White Silent Grey',White/Silent Grey,women,840,2022,2022-03-21,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/810/original/WW840GP3_D.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/810/original/WW840GP3_D.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/810/original/WW840GP3_D.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-840v3-wide-white-silent-grey-ww840gp3-d', 'flightClub': 'https://flightclub.com/wmns-840v3-wide-white-silent-grey-ww840gp3-d', 'stadiumGoods': ''}" +d7994942-d17a-42a5-a3e8-6cfbdb4cae1a,CW6736-011,Nike,Team Hustle D10 PS 'Grey Fog Mystic Navy',Grey Fog/Mystic Navy/Atomic Green/Photo Blue,youth,Team Hustle D10,2022,2022-03-21,55,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/582/original/CW6736_011.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/582/original/CW6736_011.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/582/original/CW6736_011.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/team-hustle-d10-ps-grey-fog-mystic-navy-cw6736-011', 'flightClub': 'https://flightclub.com/team-hustle-d10-ps-grey-fog-mystic-navy-cw6736-011', 'stadiumGoods': ''}" +d952dd30-c347-4f20-883b-404bef49ce6b,MS327CA,New Balance,327 'Victory Blue Surf',Victory Blue/Surf,men,327,2022,2022-03-21,100,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/719/original/MS327CA.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/719/original/MS327CA.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/719/original/MS327CA.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/327-victory-blue-surf-ms327ca', 'flightClub': 'https://flightclub.com/327-victory-blue-surf-ms327ca', 'stadiumGoods': ''}" +d9df528c-cf9c-461c-a577-2f1f324c4caa,MS237GC,New Balance,237v1 'True Camo',True Camo/Light Olive,men,237,2022,2022-03-21,75,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/717/original/MS237GC.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/717/original/MS237GC.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/717/original/MS237GC.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/237v1-true-camo-ms237gc', 'flightClub': 'https://flightclub.com/237v1-true-camo-ms237gc', 'stadiumGoods': ''}" +ddd947dd-5a59-44bd-bd19-8645d58e6559,3024911-100,Under Armour,Wmns Flow Velociti Wind 'White Halo Grey',White/Halo Grey,women,Flow Velociti Wind,2022,2022-03-21,160,235,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/484/original/3024911_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/484/original/3024911_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/484/original/3024911_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-flow-velociti-wind-white-halo-grey-3024911-100', 'flightClub': 'https://flightclub.com/wmns-flow-velociti-wind-white-halo-grey-3024911-100', 'stadiumGoods': ''}" +e37f10f1-c6ff-4ed3-89e1-72b5b8650ad8,GW5374,Reebok,Victoria Beckham x Club C 'Black Chalk',Core Black/Chalk/Chalk,men,Club C,2022,2022-03-21,180,250,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/712/original/GW5374.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/712/original/GW5374.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/712/original/GW5374.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/victoria-beckham-x-club-c-black-chalk-gw5374', 'flightClub': 'https://flightclub.com/victoria-beckham-x-club-c-black-chalk-gw5374', 'stadiumGoods': ''}" +eb24d4f9-a33d-4cef-81b6-81e405539b59,H06572,adidas,Wmns Terrex Agravic Pro 'Black Turbo',Core Black/Cloud White/Turbo,women,Terrex Agravic,2022,2022-03-21,220,290,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/697/original/H06572.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/697/original/H06572.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/697/original/H06572.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-terrex-agravic-pro-black-turbo-h06572', 'flightClub': 'https://flightclub.com/wmns-terrex-agravic-pro-black-turbo-h06572', 'stadiumGoods': ''}" +f012669b-b002-439e-af7f-74623980d81f,DJ6563-038,Jordan,Air Jordan 1 Mid SE GS 'Drip',Black/Team Orange/Kumquat/White,youth,Air Jordan 1,2022,2022-03-21,0,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/565/original/DJ6563_038.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/565/original/DJ6563_038.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/565/original/DJ6563_038.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-1-mid-se-gs-drip-dj6563-038', 'flightClub': 'https://flightclub.com/air-jordan-1-mid-se-gs-drip-dj6563-038', 'stadiumGoods': ''}" +f50ee254-4b45-4a5d-a6ab-6e944f1ef823,WS327PAA,New Balance,Wmns 327 'Natural Indigo Raw Amethyst',Natural Indigo/Raw Amethyst,women,327,2022,2022-03-21,100,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/737/original/WS327PAA.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/737/original/WS327PAA.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/737/original/WS327PAA.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-327-natural-indigo-raw-amethyst-ws327paa', 'flightClub': 'https://flightclub.com/wmns-327-natural-indigo-raw-amethyst-ws327paa', 'stadiumGoods': ''}" +fb553ac1-48b5-4724-8adb-40cad0b7330f,GY6475,adidas,adidas Forum Low South Park AWESOM-O,Brown/Black/Silver,men,Forum,2022,2022-03-21,110,119,"The South Park x adidas Forum Low ‘AWESOM-O’ is drawn from a footwear collection centered around the long-running animated sitcom. Inspired by Cartman’s robotic alter ego, the retro hoops shoe features a cardboard-brown leather upper with color-matched ribbed textile on the toe box, collar, and quarter panel. The heel overlay shines in a gleaming chrome finish, while yellow, red, and purple accents enliven a leather forefoot overlay. Overt nods to the fake robot include his likeness on the tongue tag, coiled rope laces inspired by the character’s wiring, and ‘AWESOM-O’ inscribed on the ankle strap.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/067/515/424/original/GY6475.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/067/515/424/original/GY6475.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/067/515/424/original/GY6475.png.png'}","{'stockX': 'https://stockx.com/adidas-forum-low-south-park-awesom-o', 'goat': 'https://goat.com/sneakers/south-park-x-forum-low-awesom-o-gy6475', 'flightClub': 'https://flightclub.com/south-park-x-forum-low-awesom-o-gy6475', 'stadiumGoods': ''}" +fcc26047-5320-4614-a7f5-fee071e8de57,WW840BK3,New Balance,Wmns 840v3 'Black',Black/White,women,840,2022,2022-03-21,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/806/original/WW840BK3.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/806/original/WW840BK3.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/806/original/WW840BK3.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-840v3-black-ww840bk3', 'flightClub': 'https://flightclub.com/wmns-840v3-black-ww840bk3', 'stadiumGoods': ''}" +ffa8a491-3133-42ce-a373-a68d9a8f3764,ML574OS2,New Balance,574 'Grey Black',Grey/Black,men,574,2022,2022-03-21,85,105,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/714/original/ML574OS2.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/714/original/ML574OS2.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/714/original/ML574OS2.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/574-grey-black-ml574os2', 'flightClub': 'https://flightclub.com/574-grey-black-ml574os2', 'stadiumGoods': ''}" +ffdaa757-e129-499a-9c5a-8a50e2c93c13,DH9389-100,Nike,Air Max Motif PS 'White Black',White/White/Black,youth,Air Max Motif,2022,2022-03-21,100,180,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/610/original/DH9389_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/610/original/DH9389_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/610/original/DH9389_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-motif-ps-white-black-dh9389-100', 'flightClub': 'https://flightclub.com/air-max-motif-ps-white-black-dh9389-100', 'stadiumGoods': ''}" +0d1be142-2886-49df-a088-472a25f679d3,GZ3505,adidas,Swift Run 22 'Magic Lime',Magic Lime/Core Black/Cloud White,men,Swift Run,2022,2022-03-20,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/687/original/GZ3505.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/687/original/GZ3505.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/687/original/GZ3505.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/swift-run-22-magic-lime-gz3505', 'flightClub': 'https://flightclub.com/swift-run-22-magic-lime-gz3505', 'stadiumGoods': ''}" +1341b852-af36-49ce-b718-16d5d4d39a83,GY8591,adidas,Wmns Nario Move 'White Acid Red',Cloud White/Acid Red/Blue Rush,women,Nario Move,2022,2022-03-20,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/680/original/GY8591.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/680/original/GY8591.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/680/original/GY8591.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nario-move-white-acid-red-gy8591', 'flightClub': 'https://flightclub.com/wmns-nario-move-white-acid-red-gy8591', 'stadiumGoods': ''}" +1eb4945d-5688-4da5-9b24-32081e4beba8,GW5034,adidas,Wmns Barricade 'White Silver Metallic Red',Cloud White/Silver Metallic/Grey Two,women,Barricade,2022,2022-03-20,140,210,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/644/original/GW5034.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/644/original/GW5034.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/644/original/GW5034.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-barricade-white-silver-metallic-red-gw5034', 'flightClub': 'https://flightclub.com/wmns-barricade-white-silver-metallic-red-gw5034', 'stadiumGoods': ''}" +2233f98d-5575-4d61-8239-02efec964a91,FZ3982,adidas,UltraBoost Cold.RDY 'White Halo Green',Cloud White/Core Black/Halo Green,men,UltraBoost,2022,2022-03-20,180,250,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/632/original/FZ3982.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/632/original/FZ3982.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/632/original/FZ3982.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultraboost-cold-rdy-white-halo-green-fz3982', 'flightClub': 'https://flightclub.com/ultraboost-cold-rdy-white-halo-green-fz3982', 'stadiumGoods': ''}" +2b055c5e-939d-42e5-9f36-fd09749ebffb,GW4210,adidas,ZX 750 'Black Sky Rush',Core Black/Sky Rush/Cloud White,men,ZX 750,2022,2022-03-20,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/643/original/GW4210.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/643/original/GW4210.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/643/original/GW4210.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zx-750-black-sky-rush-gw4210', 'flightClub': 'https://flightclub.com/zx-750-black-sky-rush-gw4210', 'stadiumGoods': ''}" +2db78a7a-0a9e-47f7-933c-e63a5dff1ab1,DC0481-005,Nike,Waffle One GS 'Phantom Hyper Royal',Phantom/Dark Obsidian/Black/Hyper Royal,youth,Waffle One,2022,2022-03-20,90,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/597/original/DC0481_005.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/597/original/DC0481_005.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/597/original/DC0481_005.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/waffle-one-gs-phantom-hyper-royal-dc0481-005', 'flightClub': 'https://flightclub.com/waffle-one-gs-phantom-hyper-royal-dc0481-005', 'stadiumGoods': ''}" +377a8363-a2ba-40de-8d66-d942b0f7144e,CD6892-019,Nike,Air Max Excee PS 'Grey Fog Flat Pewter',Grey Fog/Flat Pewter/Atomic Green/White,youth,Air Max Excee,2022,2022-03-20,70,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/566/original/CD6892_019.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/566/original/CD6892_019.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/566/original/CD6892_019.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-excee-ps-grey-fog-flat-pewter-cd6892-019', 'flightClub': 'https://flightclub.com/air-max-excee-ps-grey-fog-flat-pewter-cd6892-019', 'stadiumGoods': ''}" +3a3acb08-649d-4338-ad2e-bb0b58f58cee,GX0385,Reebok,Club C Revenge 'White Seaport Teal',Footwear White/Pump Orange/Seaport Teal,men,Club C,2022,2022-03-20,80,79,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/334/361/original/916403_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/334/361/original/916403_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/334/361/original/916403_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/club-c-revenge-white-seaport-teal-gx0385', 'flightClub': 'https://flightclub.com/club-c-revenge-white-seaport-teal-gx0385', 'stadiumGoods': ''}" +3a3db7cc-1015-4f6e-978b-8349cf6b3839,GW3371,adidas,Freak Spark 'Royal Blue',Royal Blue/Cloud White/Royal Blue,men,Freak,2022,2022-03-20,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/641/original/GW3371.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/641/original/GW3371.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/641/original/GW3371.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-spark-royal-blue-gw3371', 'flightClub': 'https://flightclub.com/freak-spark-royal-blue-gw3371', 'stadiumGoods': ''}" +3fd300ba-7b3b-443e-b305-2bf76bd9142e,GZ0278,Reebok,Flexagon Force 3 'Black Cold Grey',Core Black/Footwear White/Cold Grey 6,men,Flexagon,2022,2022-03-20,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/683/original/GZ0278.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/683/original/GZ0278.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/683/original/GZ0278.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/flexagon-force-3-black-cold-grey-gz0278', 'flightClub': 'https://flightclub.com/flexagon-force-3-black-cold-grey-gz0278', 'stadiumGoods': ''}" +4000908c-9c53-4a24-b9c9-b2cb962a230e,GZ2057,adidas,Stan Smith 'Black Turbo',Core Black/Cloud White/Turbo,men,Stan Smith,2022,2022-03-20,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/685/original/GZ2057.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/685/original/GZ2057.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/685/original/GZ2057.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/stan-smith-black-turbo-gz2057', 'flightClub': 'https://flightclub.com/stan-smith-black-turbo-gz2057', 'stadiumGoods': ''}" +409a8780-4a16-44c0-bbc0-220174e768b6,GZ8673,adidas,Wmns Nizza 'Floral',Wonder White/Cloud White/Focus Olive,women,Nizza,2022,2022-03-20,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/696/original/GZ8673.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/696/original/GZ8673.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/696/original/GZ8673.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-nizza-floral-gz8673', 'flightClub': 'https://flightclub.com/wmns-nizza-floral-gz8673', 'stadiumGoods': ''}" +41a12003-f51e-4f8e-9389-96f154eef811,DA2778-010,Nike,Star Runner 3 TD 'Phantom Multi',Phantom/White/University Gold/Multi-Color,infant,Star Runner,2022,2022-03-20,43,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/593/original/DA2778_010.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/593/original/DA2778_010.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/593/original/DA2778_010.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/star-runner-3-td-phantom-multi-da2778-010', 'flightClub': 'https://flightclub.com/star-runner-3-td-phantom-multi-da2778-010', 'stadiumGoods': ''}" +501a170c-d4f5-4538-80e8-7324c715783c,GW3188,adidas,Busenitz Vintage 'Shadow Olive Bold Gold',Shadow Olive/Bold Gold/Gum,men,Busenitz,2022,2022-03-20,85,118,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/639/original/GW3188.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/639/original/GW3188.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/639/original/GW3188.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/busenitz-vintage-shadow-olive-bold-gold-gw3188', 'flightClub': 'https://flightclub.com/busenitz-vintage-shadow-olive-bold-gold-gw3188', 'stadiumGoods': ''}" +65de19c7-2449-4b35-9385-422b9c85ca3b,GZ6889,adidas,Freak Spark J 'Black Camo',Core Black/Night Metallic/Core Black,youth,Freak,2022,2022-03-20,40,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/694/original/GZ6889.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/694/original/GZ6889.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/694/original/GZ6889.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-spark-j-black-camo-gz6889', 'flightClub': 'https://flightclub.com/freak-spark-j-black-camo-gz6889', 'stadiumGoods': ''}" +6a876d47-dc50-47e1-aa6d-e7433985e46d,3025041-100,Under Armour,Marathon Key 5 Sandal 'Sharkskin Grey',Sharkskin Grey/Cast Black,men,Marathon Key 5 Sandal,2022,2022-03-20,35,35,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/488/original/3025041_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/488/original/3025041_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/488/original/3025041_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/marathon-key-5-sandal-sharkskin-grey-3025041-100', 'flightClub': 'https://flightclub.com/marathon-key-5-sandal-sharkskin-grey-3025041-100', 'stadiumGoods': ''}" +6da62d66-5df6-4c06-a31a-4ff01be3a67d,GX0988,adidas,Nizza 'Cream White',Cream White/Cream White/Off White,men,Nizza,2022,2022-03-20,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/658/original/GX0988.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/658/original/GX0988.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/658/original/GX0988.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/nizza-cream-white-gx0988', 'flightClub': 'https://flightclub.com/nizza-cream-white-gx0988', 'stadiumGoods': ''}" +732a3f50-7b6f-41ef-a9c5-7e652b692b8c,GZ6468,adidas,adidas Forum 84 Hi AEC White Hazy Yellow,Cloud White/Hazy Yellow/Cloud White,men,Forum,2022,2022-03-20,200,139,"The adidas Forum ‘84 High ‘Worn Yellow’ showcases a vintage, worn-in aesthetic, replicating the look of a sneaker taken out of storage from the ‘80s. Traditional laces and an adjustable ankle strap secure a white leather upper marked with scuffs and discolored patches. Contrasting hits of Hazy Yellow make their way to the high-cut collar, external heel counter, and serrated three-stripes. The high-top is mounted on a pre-yellowed rubber cupsole that packs an EVA wedge for lightweight cushioning.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/067/515/448/original/GZ6468.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/067/515/448/original/GZ6468.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/067/515/448/original/GZ6468.png.png'}","{'stockX': 'https://stockx.com/adidas-forum-84-hi-aec-white-hazy-yellow', 'goat': 'https://goat.com/sneakers/forum-84-high-worn-yellow-gz6468', 'flightClub': 'https://flightclub.com/forum-84-high-worn-yellow-gz6468', 'stadiumGoods': ''}" +743630da-fd22-4e16-b23a-721e66e7123a,GY0437,adidas,Freak Spark 'White Gold Metallic',Cloud White/Gold Metallic/Cloud White,men,Freak,2022,2022-03-20,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/673/original/GY0437.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/673/original/GY0437.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/673/original/GY0437.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-spark-white-gold-metallic-gy0437', 'flightClub': 'https://flightclub.com/freak-spark-white-gold-metallic-gy0437', 'stadiumGoods': ''}" +7665fe27-7da4-4bef-a017-87a7e5d2fd59,GZ6969,adidas,Wmns Adicross Retro Spikeless 'White Black',Cloud White/Core Black/Cloud White,women,Adicross,2022,2022-03-20,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/695/original/GZ6969.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/695/original/GZ6969.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/695/original/GZ6969.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-adicross-retro-spikeless-white-black-gz6969', 'flightClub': 'https://flightclub.com/wmns-adicross-retro-spikeless-white-black-gz6969', 'stadiumGoods': ''}" +7c531b94-8302-4738-b228-1d0a9a5410ba,195504-02,Puma,Voyage Nitro 'Covert Green',Covert Green/Black/Spray Green,men,Voyage Nitro,2022,2022-03-20,130,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/530/original/195504_02.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/530/original/195504_02.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/530/original/195504_02.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/voyage-nitro-covert-green-195504-02', 'flightClub': 'https://flightclub.com/voyage-nitro-covert-green-195504-02', 'stadiumGoods': ''}" +87a7f07e-c0a1-4f5f-abc0-5ff92376a4aa,3025041-001,Under Armour,Marathon Key 5 Sandal 'Black Stealth Grey',Black/Stealth Grey,men,Marathon Key 5 Sandal,2022,2022-03-20,35,168,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/718/486/original/3025041_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/718/486/original/3025041_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/718/486/original/3025041_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/marathon-key-5-sandal-black-stealth-grey-3025041-001', 'flightClub': 'https://flightclub.com/marathon-key-5-sandal-black-stealth-grey-3025041-001', 'stadiumGoods': ''}" +9a39c648-45c5-4ac0-84a6-d69b9340edbf,GW5375,Reebok,Victoria Beckham x Club C 'White Chalk',Footwear White/Chalk/Core Black,men,Club C,2022,2022-03-20,180,199,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/264/original/GW5375.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/264/original/GW5375.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/264/original/GW5375.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/victoria-beckham-x-club-c-white-chalk-gw5375', 'flightClub': 'https://flightclub.com/victoria-beckham-x-club-c-white-chalk-gw5375', 'stadiumGoods': ''}" +9bd78fee-68a7-44fa-bbd8-2c27f14a3df6,GZ0653,adidas,Marvel x FortaRun I 'Spider-Man',Vivid Red/Core Black/Cloud White,infant,FortaRun,2022,2022-03-20,38,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/684/original/GZ0653.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/684/original/GZ0653.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/684/original/GZ0653.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/marvel-x-fortarun-i-spider-man-gz0653', 'flightClub': 'https://flightclub.com/marvel-x-fortarun-i-spider-man-gz0653', 'stadiumGoods': ''}" +aaec4b10-d3b0-4c4a-a1c6-73631cf4a925,GX0872,adidas,Wmns Vulc Raid3r 'White Silver Metallic',Cloud White/Cloud White/Silver Metallic,women,Vulc Raid3r,2022,2022-03-20,60,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/657/original/GX0872.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/657/original/GX0872.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/657/original/GX0872.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-vulc-raid3r-white-silver-metallic-gx0872', 'flightClub': 'https://flightclub.com/wmns-vulc-raid3r-white-silver-metallic-gx0872', 'stadiumGoods': ''}" +b368893c-8350-4691-95f7-79c0dc912685,CW6540-003,Nike,Wmns Court Legacy 'Seafoam',Seafoam/Black/White,women,Court Legacy,2022,2022-03-20,55,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/578/original/CW6540_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/578/original/CW6540_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/578/original/CW6540_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-court-legacy-seafoam-cw6540-003', 'flightClub': 'https://flightclub.com/wmns-court-legacy-seafoam-cw6540-003', 'stadiumGoods': ''}" +bd5036db-6030-437b-9c2b-19223080c00c,GY6101,adidas,Wmns Puremotion 'Black Wonder White',Core Black/Core Black/Wonder White,women,Puremotion,2022,2022-03-20,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/676/original/GY6101.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/676/original/GY6101.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/676/original/GY6101.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-puremotion-black-wonder-white-gy6101', 'flightClub': 'https://flightclub.com/wmns-puremotion-black-wonder-white-gy6101', 'stadiumGoods': ''}" +c1aafa24-57ac-4a79-9de1-43d1e0df89b5,GW3370,adidas,Freak Spark 'Team Power Red',Team Power Red 2/Cloud White/Team Power Red 2,men,Freak,2022,2022-03-20,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/640/original/GW3370.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/640/original/GW3370.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/640/original/GW3370.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-spark-team-power-red-gw3370', 'flightClub': 'https://flightclub.com/freak-spark-team-power-red-gw3370', 'stadiumGoods': ''}" +c6d8cf0d-bbea-49c9-ba7b-8b3ad8afe6e0,GY0187,adidas,Freak Spark 'White Silver Metallic',Cloud White/Silver Metallic/Cloud White,men,Freak,2022,2022-03-20,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/672/original/GY0187.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/672/original/GY0187.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/672/original/GY0187.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-spark-white-silver-metallic-gy0187', 'flightClub': 'https://flightclub.com/freak-spark-white-silver-metallic-gy0187', 'stadiumGoods': ''}" +c77d8480-4e41-40c9-bae7-1e664e4d10aa,CD7783-007,Nike,Court Borough Mid 2 PS 'Grey Fog Mystic Navy',Grey Fog/Atomic Green/Flat Pewter/Mystic Navy,youth,Court Borough,2022,2022-03-20,60,60,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/570/original/CD7783-007.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/570/original/CD7783-007.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/570/original/CD7783-007.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/court-borough-mid-2-ps-grey-fog-mystic-navy-cd7783-007', 'flightClub': 'https://flightclub.com/court-borough-mid-2-ps-grey-fog-mystic-navy-cd7783-007', 'stadiumGoods': ''}" +d53b39bf-0b53-4c1e-87f6-17bc53c32d32,GY8436,Reebok,Legacy Lifter 2 'Pure Grey Blue Slate',Pure Grey 2/Core Black/Blue Slate,men,Legacy Lifter,2022,2022-03-20,200,270,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/678/original/GY8436.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/678/original/GY8436.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/678/original/GY8436.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/legacy-lifter-2-pure-grey-blue-slate-gy8436', 'flightClub': 'https://flightclub.com/legacy-lifter-2-pure-grey-blue-slate-gy8436', 'stadiumGoods': ''}" +ee5ebdc5-5c5e-4826-8083-a907c29d6e05,GW3007,adidas,Multix J 'Black Clear Pink',Core Black/Clear Pink/Cloud White,youth,Multix,2022,2022-03-20,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/638/original/GW3007.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/638/original/GW3007.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/638/original/GW3007.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/multix-j-black-clear-pink-gw3007', 'flightClub': 'https://flightclub.com/multix-j-black-clear-pink-gw3007', 'stadiumGoods': ''}" +f446805c-aaa7-4b9b-bc29-1998372bcf2f,GZ6467,adidas,adidas Forum 84 Hi AEC White Blue,Cloud White/Blue/Cloud White,men,Forum,2022,2022-03-20,200,157,"The adidas Forum ‘84 High ‘Worn Blue’ treats the retro hoops shoe to a distressed makeover. Scuff marks and discolorations are prevalent throughout the upper, constructed from white leather with contrasting blue accents on the collar, heel counter, and signature three-stripes. Heritage details remain intact, including an adjustable ankle strap and X-shaped overlay. A pre-yellowed finish is applied to the white rubber midsole, featuring an exposed EVA wedge on the medial side.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/934/783/original/897955_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/934/783/original/897955_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/934/783/original/897955_00.png.png'}","{'stockX': 'https://stockx.com/adidas-forum-84-hi-aec-white-blue', 'goat': 'https://goat.com/sneakers/forum-84-high-worn-blue-gz6467', 'flightClub': 'https://flightclub.com/forum-84-high-worn-blue-gz6467', 'stadiumGoods': ''}" +fbf0b3d3-c882-43a9-93bf-336ec803cdd5,G55863,Reebok,Liquifect 180 3 'Pure Grey White',Pure Grey 4/Pure Grey 6/Footwear White,men,Liquifect 180,2022,2022-03-20,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/634/original/G55863.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/634/original/G55863.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/634/original/G55863.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/liquifect-180-3-pure-grey-white-g55863', 'flightClub': 'https://flightclub.com/liquifect-180-3-pure-grey-white-g55863', 'stadiumGoods': ''}" +fca11d20-b778-4d2b-8d9a-86ebd8f56641,GX6348,adidas,ZX 5000 'Sesame',Sesame/Sesame/Cloud White,men,ZX 5000,2022,2022-03-20,160,230,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/665/original/GX6348.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/665/original/GX6348.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/665/original/GX6348.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zx-5000-sesame-gx6348', 'flightClub': 'https://flightclub.com/zx-5000-sesame-gx6348', 'stadiumGoods': ''}" +07f8a312-b9b2-4d21-bf02-6f0198b939e8,DJ3003-167,Jordan,Air Jordan 13 Retro GS 'Del Sol',White/University Red/Del Sol/Black,youth,Air Jordan 13,2022,2022-03-19,0,150,"Made for big kids, the Air Jordan 13 Retro GS ‘Del Sol’ brings warm accents to the iconic shoe that MJ wore throughout most of the 1998 NBA postseason. White tumbled leather is deployed on the forefoot and the 13’s signature overlays, while yellow synthetic suede covers the heel, midfoot, and Air-assisted midsole. Branding elements include a holographic cat eye on the lateral ankle and a red Jumpman logo atop the tongue. An additional hit of crimson enlivens the panther-paw rubber outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/894/236/original/DJ3003_167.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/894/236/original/DJ3003_167.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/894/236/original/DJ3003_167.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-13-retro-gs-del-sol-dj3003-167', 'flightClub': 'https://flightclub.com/air-jordan-13-retro-gs-del-sol-dj3003-167', 'stadiumGoods': ''}" +155d330f-0fb5-4509-8a21-b930b543665a,414571-167,Jordan,Jordan 13 Retro Del Sol,White/University Red-Del Sol-Black,men,Air Jordan 13,2022,2022-03-19,200,195,"The Air Jordan 13 Retro ‘Del Sol’ combines sunny accents with OG-inspired color blocking and materials. The mid-top carries a white leather upper with dimpled overlays in matching white tumbled leather. A crimson Jumpman logo graces the tongue, while a green-tinged holographic cat eye adorns the lateral ankle. Yellow synthetic suede wraps the midfoot, heel, and lightweight Phylon midsole, fitted with Zoom Air cushioning in the forefoot and heel. Underfoot, the black panther-paw outsole features herringbone rubber pods and a carbon fiber shank plate.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/067/906/138/original/891525_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/067/906/138/original/891525_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/067/906/138/original/891525_00.png.png'}","{'stockX': 'https://stockx.com/air-jordan-13-retro-del-sol', 'goat': 'https://goat.com/sneakers/air-jordan-13-retro-del-sol-414571-167', 'flightClub': 'https://flightclub.com/air-jordan-13-retro-del-sol-414571-167', 'stadiumGoods': ''}" +18386acb-11a5-4b99-aa47-307fac121052,385260-01,Puma,AMI x Slipstream Low 'White Pristine',White/Pristine,men,Slipstream,2022,2022-03-19,140,155,"Launching as part of a capsule collection with the Parisian fashion label, the AMI x PUMA Slipstream Low ‘White Pristine’ treats the ‘80s hoops shoe to a neutral makeover. White leather is utilized on the upper, accented with a tonal stitched Formstrip and fortified with off-white suede overlays. Mismatched heel tabs feature PUMA’s jumping cat icon and AMI’s hear logo stamped in red, while both elements are integrated on dual-branded tongue tags. Underpinning the low-top is a durable gum rubber outsole.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/637/169/original/908637_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/637/169/original/908637_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/637/169/original/908637_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ami-x-slipstream-low-white-pristine-385260-01', 'flightClub': 'https://flightclub.com/ami-x-slipstream-low-white-pristine-385260-01', 'stadiumGoods': ''}" +2f6ccc50-89e4-4512-b42d-72bf2537a2c5,383232-02,Puma,RS-Z LTH 'Triple White',White/White,men,RS-Z,2022,2022-03-19,110,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/897/889/original/383232_02.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/897/889/original/383232_02.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/897/889/original/383232_02.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rs-z-lth-triple-white-383232-02', 'flightClub': 'https://flightclub.com/rs-z-lth-triple-white-383232-02', 'stadiumGoods': ''}" +3d750818-c222-45cf-a3e9-68616800b2c3,106764-01,Puma,Future Z 3.3 TT 'Neon Citrus Black',Neon Citrus/Diamond Silver/Black,men,Future Z 3.3,2022,2022-03-19,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/517/original/106764_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/517/original/106764_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/517/original/106764_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/future-z-3-3-tt-neon-citrus-black-106764-01', 'flightClub': 'https://flightclub.com/future-z-3-3-tt-neon-citrus-black-106764-01', 'stadiumGoods': ''}" +3fcee740-dcd6-4ae1-80ce-771178e8b934,BBKLSNM2,New Balance,New Balance Kawhi 2 New Money,Gray Mist/Pale Gold,men,KAWHI 2,2022,2022-03-19,160,194,"The New Balance KAWHI 2 ‘New Money’ brings back the currency-themed motif featured on Kawhi Leonard’s debut signature shoe. Nodding to the look of a 100 dollar bill, an all-over graphic print is applied to an upper built with FitWeave Lite, a woven textile that offers a blend of adaptive stretch and support. ‘100’ is stamped on the tongue, while New Balance branding is embossed on a metallic gold heel clip. The sneaker sits atop a wavy FuelCell midsole, tinted green and enhanced with an energy-returning performance plate.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/894/221/original/BBKLSNM2.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/894/221/original/BBKLSNM2.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/894/221/original/BBKLSNM2.png.png'}","{'stockX': 'https://stockx.com/new-balance-kawhi-2-new-money', 'goat': 'https://goat.com/sneakers/kawhi-2-new-money-bbklsnm2', 'flightClub': 'https://flightclub.com/kawhi-2-new-money-bbklsnm2', 'stadiumGoods': ''}" +49d16cbf-0ce3-4dce-86f2-576b7242166e,DJ3005-167,Jordan,Air Jordan 13 Retro PS 'Del Sol',White/University Red/Del Sol/Black,youth,Air Jordan 13,2022,2022-03-19,90,101,"Made for little kids, the Air Jordan 13 Retro PS ‘Del Sol’ showcases vibrant accents on the legacy silhouette inspired by a predatory panther. The upper combines yellow synthetic suede paneling with a white tumbled leather toe box and dimpled overlays in matching white leather. A crimson Jumpman embellishes the tongue, while the 13’s holographic cat eye adorns the lateral collar. Underfoot, the black panther-paw outsole features herringbone traction pods for superior grip.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/894/238/original/DJ3005_167.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/894/238/original/DJ3005_167.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/894/238/original/DJ3005_167.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-13-retro-ps-del-sol-dj3005-167', 'flightClub': 'https://flightclub.com/air-jordan-13-retro-ps-del-sol-dj3005-167', 'stadiumGoods': ''}" +4bb908cf-d195-4f43-ad77-d7f5173f7d0d,106765-01,Puma,Future Z 3.3 IT 'Neon Citrus Black',Neon Citrus/Diamond Silver/Black,men,Future Z 3.3,2022,2022-03-19,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/521/original/106765_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/521/original/106765_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/521/original/106765_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/future-z-3-3-it-neon-citrus-black-106765-01', 'flightClub': 'https://flightclub.com/future-z-3-3-it-neon-citrus-black-106765-01', 'stadiumGoods': ''}" +59002ea2-1530-44ed-9cb2-3e56e307cfda,GX2972,adidas,Wmns 4DFWD 'Grey Almost Pink',Grey Six/Cloud White/Almost Pink,women,4DFWD,2022,2022-03-19,200,270,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/661/original/GX2972.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/661/original/GX2972.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/661/original/GX2972.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-4dfwd-grey-almost-pink-gx2972', 'flightClub': 'https://flightclub.com/wmns-4dfwd-grey-almost-pink-gx2972', 'stadiumGoods': ''}" +5d6a8b62-d4ee-4a1e-b2fc-1f51749d9265,1023A053-001,ASICS,Gel Quantum 90 SD 'Triple Black',Black/Black,men,Gel Quantum 90,2022,2022-03-19,90,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/513/original/1023A053_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/513/original/1023A053_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/513/original/1023A053_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-90-sd-triple-black-1023a053-001', 'flightClub': 'https://flightclub.com/gel-quantum-90-sd-triple-black-1023a053-001', 'stadiumGoods': ''}" +5db1186b-2e5b-4e2e-a79b-6e482440ddac,194449-12,Puma,Deviate Nitro 'Sailing Blue Neon Citrus',Sailing Blue/Black/Neon Citrus,men,Deviate Nitro,2022,2022-03-19,160,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/478/original/194449_12.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/478/original/194449_12.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/478/original/194449_12.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/deviate-nitro-sailing-blue-neon-citrus-194449-12', 'flightClub': 'https://flightclub.com/deviate-nitro-sailing-blue-neon-citrus-194449-12', 'stadiumGoods': ''}" +68bb99f5-f883-477c-a49a-c873f2cbbda6,384146-01,Puma,AMI x Suede Crepe 'Pristine',Pristine,men,Suede,2022,2022-03-19,120,120,"The AMI x PUMA Suede Crepe ‘Pristine’ makes over the sneaker icon with a retooled build. The Parisian fashion brand updates the low-top with a genuine crepe sole, replacing the traditional rubber cupsole of the original. The upper is constructed from tan suede with a reinforced toe cap and a green leather Formstrip. Matching green leather is utilized on the heel overlay, featuring mismatched AMI and PUMA branding. Both logos are repeated on oversized woven tongue tags.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/637/153/original/910161_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/637/153/original/910161_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/637/153/original/910161_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ami-x-suede-crepe-pristine-384146-01', 'flightClub': 'https://flightclub.com/ami-x-suede-crepe-pristine-384146-01', 'stadiumGoods': ''}" +7ed17c9b-1e25-40fd-a9ab-8254a43493a1,384342-01,Puma,AMI x Slipstream Mid 'White Pristine',White/Pristine,men,Slipstream,2022,2022-03-19,160,100,"The AMI x PUMA Slipstream Mid ‘White Pristine’ is taken from a capsule collection with the Parisian fashion brand. The vintage ‘80s silhouette features a white leather upper with a tonal stitched Formstrip and off-white suede overlays throughout the toe, midfoot, and heel. The sneaker’s monochrome color palette is disrupted by black zigzag stitching and a woven tongue tag that displays dual PUMA and AMI branding. Underfoot, a gum rubber outsole provides grippy traction.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/334/503/original/910160_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/334/503/original/910160_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/334/503/original/910160_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ami-x-slipstream-mid-white-pristine-384342-01', 'flightClub': 'https://flightclub.com/ami-x-slipstream-mid-white-pristine-384342-01', 'stadiumGoods': ''}" +926e5f1d-3870-4394-b542-e57af9bacc89,DH7138-506,Jordan,Air Jordan 4 Retro 'Zen Master',Amethyst Wave/Bright Crimson/Black/Cement Grey,men,Air Jordan 4,2022,2022-03-19,200,617,"The Air Jordan 4 Retro ‘Zen Master’ features a unique design that pays tribute to Phil Jackson, the Chicago Bulls head coach who helmed the team’s six championship runs with Michael Jordan during the ‘90s. The classic silhouette makes use of a textile upper in a swirling mix of pink, purple and blue — a tie dye-like effect that nods to Jackson’s ‘Zen Master’ persona. A black woven tongue features Flight branding and a scarlet Jumpman icon, while a translucent TPU heel tab displays a raised Jumpman logo in black. Lightweight cushioning arrives via a polyurethane midsole with a visible Air-sole unit in the heel.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/065/189/726/original/DH7138_506.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/065/189/726/original/DH7138_506.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/065/189/726/original/DH7138_506.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-4-retro-zen-master-dh7138-506', 'flightClub': 'https://flightclub.com/air-jordan-4-retro-zen-master-dh7138-506', 'stadiumGoods': ''}" +991211b2-4515-494b-8fdf-5f1c1a057da1,GZ2058,adidas,Stan Smith 'White Solar Yellow',Cloud White/Core Black/Solar Yellow,men,Stan Smith,2022,2022-03-19,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/686/original/GZ2058.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/686/original/GZ2058.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/686/original/GZ2058.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/stan-smith-white-solar-yellow-gz2058', 'flightClub': 'https://flightclub.com/stan-smith-white-solar-yellow-gz2058', 'stadiumGoods': ''}" +b8d389ac-e008-482d-8c28-b4e41330ec67,DR2363-100,Nike,Nike Air Max 1 SP Far Out (TD),Wild Violet/Multi-Color-Sail,toddler,Air Max 1,2022,2022-03-19,77,200,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/671/original/DR2363_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/671/original/DR2363_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/671/original/DR2363_100.png.png'}","{'stockX': 'https://stockx.com/nike-air-max-1-sp-far-out-td', 'goat': 'https://goat.com/sneakers/concepts-x-air-max-1-sp-td-far-out-dr2363-100', 'flightClub': 'https://flightclub.com/concepts-x-air-max-1-sp-td-far-out-dr2363-100', 'stadiumGoods': ''}" +b9c58782-42ed-469d-8fdc-cacd828e88cc,1203A104-200,ASICS,Gel Quantum 90 SD 'Wood Crepe',Wood Crepe/Wood Crepe,men,Gel Quantum 90,2022,2022-03-19,90,89,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/526/original/1203A104_200.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/526/original/1203A104_200.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/526/original/1203A104_200.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-90-sd-wood-crepe-1203a104-200', 'flightClub': 'https://flightclub.com/gel-quantum-90-sd-wood-crepe-1203a104-200', 'stadiumGoods': ''}" +bd42611d-eca0-4cd6-b705-082bf28b22a5,DJ3004-167,Jordan,Air Jordan 13 Retro TD 'Del Sol',White/University Red/Del Sol,infant,Air Jordan 13,2022,2022-03-19,60,80,"The Air Jordan 13 Retro TD ‘Del Sol’ applies OG-inspired color blocking to a scaled-down version of the shoe that MJ wore in the runup to his sixth and final NBA title. White tumbled leather is executed on the forefoot and signature dimpled overlays, while yellow synthetic suede wraps around the heel and extends to the midfoot. Branding hits take the form of a holographic cat eye and a crimson Jumpman logo on the tongue. Underfoot, the outsole features herringbone traction pods for reliable grip.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/879/037/original/900783_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/879/037/original/900783_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/879/037/original/900783_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-jordan-13-retro-td-del-sol-dj3004-167', 'flightClub': 'https://flightclub.com/air-jordan-13-retro-td-del-sol-dj3004-167', 'stadiumGoods': ''}" +d138c49e-0dee-4cc5-b535-05dd671774d3,DR2362-100,Nike,Nike Air Max 1 SP Far Out (PS),Wild Violet/Multi-Color-Sail,preschool,Air Max 1,2022,2022-03-19,93,248,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/053/original/DR2362_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/053/original/DR2362_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/053/original/DR2362_100.png.png'}","{'stockX': 'https://stockx.com/nike-air-max-1-sp-far-out-ps', 'goat': 'https://goat.com/sneakers/concepts-x-air-max-1-sp-ps-far-out-dr2362-100', 'flightClub': 'https://flightclub.com/concepts-x-air-max-1-sp-ps-far-out-dr2362-100', 'stadiumGoods': ''}" +d3446272-d5d5-44fa-b672-78017a474a21,HR1905,adidas,adidas T-Mac 2.0 Restomod Black,Core Black/Core Black/Core Black,men,adidas T-Mac 2.0 Restomod,2022,2022-03-19,130,130,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': 'https://stockx.com/adidas-t-mac-20-restomod-black', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +d96c0750-d2ce-4974-a6b0-23340366257f,DR9773-300,Nike,Nike Air Max 1 SH Skunk,Treeline/Light Bordeax,men,Air Max 1,2022,2022-03-19,150,219,,"{'360': ['https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819', 'https://images.stockx.com/360/Nike-Air-Max-1-SH-Skunk/Images/Nike-Air-Max-1-SH-Skunk/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648503819'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/277/719/original/913964_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/277/719/original/913964_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/277/719/original/913964_00.png.png'}","{'stockX': 'https://stockx.com/nike-air-max-1-sh-skunk', 'goat': 'https://goat.com/sneakers/air-max-1-nh-treeline-dr9773-300', 'flightClub': 'https://flightclub.com/air-max-1-nh-treeline-dr9773-300', 'stadiumGoods': ''}" +dffbb296-51ff-4aa9-bf0c-19f28503c778,GZ3965,adidas,Stan Smith I 'Paint Drip - White Solid Green',Cloud White/Team Semi Solid Green/Core Black,infant,Stan Smith,2022,2022-03-19,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/688/original/GZ3965.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/688/original/GZ3965.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/688/original/GZ3965.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/stan-smith-i-paint-drip-white-solid-green-gz3965', 'flightClub': 'https://flightclub.com/stan-smith-i-paint-drip-white-solid-green-gz3965', 'stadiumGoods': ''}" +e7af4c3a-c1fa-4a4a-824b-d372a1e21017,GW5373,Reebok,Victoria Beckham x Club C 'Ceramic Pink',Ceramic Pink/Ceramic Pink/Ceramic Pink,men,Club C,2022,2022-03-19,180,200,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/651/original/GW5373.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/651/original/GW5373.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/651/original/GW5373.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/victoria-beckham-x-club-c-ceramic-pink-gw5373', 'flightClub': 'https://flightclub.com/victoria-beckham-x-club-c-ceramic-pink-gw5373', 'stadiumGoods': ''}" +ff5f0cfc-b5ea-4fd6-9cca-ad152e00b303,307150-01,Puma,Mercedes-AMG Petronas F1 x Speedcat Pro B Replica 'Black White',Black/White,men,Speedcat,2022,2022-03-19,350,350,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/535/original/307150_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/535/original/307150_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/535/original/307150_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/mercedes-amg-petronas-f1-x-speedcat-pro-b-replica-black-white-307150-01', 'flightClub': 'https://flightclub.com/mercedes-amg-petronas-f1-x-speedcat-pro-b-replica-black-white-307150-01', 'stadiumGoods': ''}" +0214e3a9-c67e-4bb9-b6c8-7f8569508b4f,1014A234-701,ASICS,Pre Excite 9 PS 'Pink Glow',Pink Glow/Pure Silver,youth,Pre Excite,2022,2022-03-18,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/056/684/original/1014A234_701.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/056/684/original/1014A234_701.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/056/684/original/1014A234_701.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/pre-excite-9-ps-pink-glow-1014a234-701', 'flightClub': 'https://flightclub.com/pre-excite-9-ps-pink-glow-1014a234-701', 'stadiumGoods': ''}" +0433bd7d-6b13-493a-bd4a-873d231c5351,GW8125,adidas,Lego x Sport Pro I 'Black Equipment Yellow',Core Black/Core Black/Equipment Yellow,infant,Adidas Sport,2022,2022-03-18,52,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/652/original/GW8125.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/652/original/GW8125.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/652/original/GW8125.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lego-x-sport-pro-i-black-equipment-yellow-gw8125', 'flightClub': 'https://flightclub.com/lego-x-sport-pro-i-black-equipment-yellow-gw8125', 'stadiumGoods': ''}" +1b8bade7-69a4-410e-919d-5050293fd89d,MTMORLH2,New Balance,New Balance X More Trail V2 Harvest Gold (W),Harvest Gold/Mountain Teal,women,Fresh Foam X More,2022,2022-03-18,165,173,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/724/original/MTMORLH2.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/724/original/MTMORLH2.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/724/original/MTMORLH2.png.png'}","{'stockX': 'https://stockx.com/new-balance-more-trail-v2-harvest-gold-w', 'goat': 'https://goat.com/sneakers/fresh-foam-x-more-trail-v2-harvest-gold-mountain-teal-mtmorlh2', 'flightClub': 'https://flightclub.com/fresh-foam-x-more-trail-v2-harvest-gold-mountain-teal-mtmorlh2', 'stadiumGoods': ''}" +2e346acb-3df0-4d0f-bcaf-a066201aed6d,GX2933,adidas,adidas D Rose Son of Chi,Lavender/Black,men,D Rose Son of Chi,2022,2022-03-18,100,163,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/660/original/GX2933.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/660/original/GX2933.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/660/original/GX2933.png.png'}","{'stockX': 'https://stockx.com/adidas-d-rose-son-of-chi', 'goat': 'https://goat.com/sneakers/d-rose-son-of-chi-rare-gems-gx2933', 'flightClub': 'https://flightclub.com/d-rose-son-of-chi-rare-gems-gx2933', 'stadiumGoods': ''}" +323a051a-30d9-4620-9578-bc1a1c621a54,GW1066,adidas,Wmns Grand Court Alpha 'White Gold Metallic',Cloud White/Cloud White/Gold Metallic,women,Grand Court,2022,2022-03-18,70,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/636/original/GW1066.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/636/original/GW1066.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/636/original/GW1066.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-grand-court-alpha-white-gold-metallic-gw1066', 'flightClub': 'https://flightclub.com/wmns-grand-court-alpha-white-gold-metallic-gw1066', 'stadiumGoods': ''}" +3873d054-a0f7-4b71-845c-99029f204fdd,GX0297,Reebok,InstaPump Fury Zone 'Aubergine',Aubergine/Pure Grey 1/Core Black,men,InstaPump Fury,2022,2022-03-18,160,157,"The Reebok InstaPump Fury Zone ‘Aubergine’ delivers a hybrid slip-on silhouette based on a pair of iconic models from the Reebok archives, the InstaPump Fury and Pump Omini Zone 2. Borrowing familiar hues from the ‘Brazen Berry’ InstaPump Fury, this pair carries a purple mesh upper with a black inflatable cage trimmed in contrast white detailing. An adjustable ankle strap features a rubber Pump button atop the tongue and hook-and-loop closure at the rear. The mid-top is mounted on a lightweight EVA midsole with a stabilizing TPU insert.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/840/582/original/GX0297.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/840/582/original/GX0297.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/840/582/original/GX0297.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/instapump-fury-zone-aubergine-gx0297', 'flightClub': 'https://flightclub.com/instapump-fury-zone-aubergine-gx0297', 'stadiumGoods': ''}" +39941ba2-24cb-49df-a579-0334d27a74ae,GX7532,Reebok,Liquifect 180 3 'Grey Future Teal',Cold Grey/Core Black/Future Teal,men,Liquifect 180,2022,2022-03-18,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/670/original/GX7532.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/670/original/GX7532.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/670/original/GX7532.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/liquifect-180-3-grey-future-teal-gx7532', 'flightClub': 'https://flightclub.com/liquifect-180-3-grey-future-teal-gx7532', 'stadiumGoods': ''}" +3fae731f-33e0-4e0d-aa41-4d535b8a7ed2,GY0906,adidas,Wmns Adizero Boston 10 'Almost Lime Mint Rush',Almost Lime/Mint Rush/Light Flash Orange,women,Adizero Boston,2022,2022-03-18,140,200,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/674/original/GY0906.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/674/original/GY0906.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/674/original/GY0906.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-adizero-boston-10-almost-lime-mint-rush-gy0906', 'flightClub': 'https://flightclub.com/wmns-adizero-boston-10-almost-lime-mint-rush-gy0906', 'stadiumGoods': ''}" +419c8662-5d2c-41ea-a9a9-d4385abcdcf9,DD0422-100,Nike,LeBron 19 SE GS 'White Metallic Gold',White/Black/Metallic Gold,youth,LeBron 19,2022,2022-03-18,160,179,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/600/original/DD0422_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/600/original/DD0422_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/600/original/DD0422_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/lebron-19-se-gs-white-metallic-gold-dd0422-100', 'flightClub': 'https://flightclub.com/lebron-19-se-gs-white-metallic-gold-dd0422-100', 'stadiumGoods': ''}" +42306265-ac4b-42ab-8286-fc11d999ba20,CM1600VG,New Balance,New Balance 1600 Premium Vintage Grey,Vintage Grey/Navy/Off White,men,New Balance 1600,2022,2022-03-18,165,209,,"{'360': [], 'original': 'https://images.stockx.com/images/New-Balance-1600-Premium-Vintage-Grey.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1647589415', 'small': 'https://images.stockx.com/images/New-Balance-1600-Premium-Vintage-Grey.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1647589415', 'thumbnail': 'https://images.stockx.com/images/New-Balance-1600-Premium-Vintage-Grey.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1647589415'}","{'stockX': 'https://stockx.com/new-balance-1600-premium-vintage-grey', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +5aacb27a-879a-4896-9f69-c33cf40665c8,691039-WIAT1-5814,Alexander McQueen,Alexander McQueen Wmns Sprint Runner 'Pink',Pink/Black/White,women,Alexander McQueen Sprint Runner,2022,2022-03-18,0,750,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/374/716/original/691039_WIAT1_5814.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/374/716/original/691039_WIAT1_5814.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/374/716/original/691039_WIAT1_5814.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/alexander-mcqueen-wmns-sprint-runner-pink-691039-wiat1-5814', 'flightClub': 'https://flightclub.com/alexander-mcqueen-wmns-sprint-runner-pink-691039-wiat1-5814', 'stadiumGoods': ''}" +6287f366-608d-42eb-8006-5ec5cde9631d,GX0617,adidas,Wmns Puremotion 'White Grey',Cloud White/Cloud White/Grey One,women,Puremotion,2022,2022-03-18,75,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/656/original/GX0617.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/656/original/GX0617.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/656/original/GX0617.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-puremotion-white-grey-gx0617', 'flightClub': 'https://flightclub.com/wmns-puremotion-white-grey-gx0617', 'stadiumGoods': ''}" +63be6870-5073-4fce-9605-e982b02cb594,GW5072,adidas,Crazyflight 'White Flash Orange Turbo',Cloud White/Flash Orange/Turbo,men,Crazyflight,2022,2022-03-18,130,200,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/645/original/GW5072.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/645/original/GW5072.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/645/original/GW5072.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/crazyflight-white-flash-orange-turbo-gw5072', 'flightClub': 'https://flightclub.com/crazyflight-white-flash-orange-turbo-gw5072', 'stadiumGoods': ''}" +6c8f5a57-df9f-4950-b3ca-7ecb0e88f39d,GX0554,adidas,Stan Smith Big Kid 'White Wonder Mauve',Cloud White/Pulse Amber/Wonder Mauve,youth,Stan Smith,2022,2022-03-18,85,155,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/655/original/GX0554.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/655/original/GX0554.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/655/original/GX0554.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/stan-smith-big-kid-white-wonder-mauve-gx0554', 'flightClub': 'https://flightclub.com/stan-smith-big-kid-white-wonder-mauve-gx0554', 'stadiumGoods': ''}" +6cd2e6f5-5465-4d73-bf20-457de7915638,1203A087-201,ASICS,Gel Bondal 'Midnight Glacier Grey',Midnight/Glacier Grey,men,Gel Bondal,2022,2022-03-18,65,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/523/original/1203A087_201.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/523/original/1203A087_201.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/523/original/1203A087_201.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-bondal-wood-crepe-1203a087-201', 'flightClub': 'https://flightclub.com/gel-bondal-wood-crepe-1203a087-201', 'stadiumGoods': ''}" +6f985925-f194-4acd-a7eb-f74722dae967,385116-10,Puma,MB.01 Little Kid 'Queen City',Purple Glimmer/Blue Atoll,youth,MB.01,2022,2022-03-18,80,85,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/204/328/original/385116_10.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/204/328/original/385116_10.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/204/328/original/385116_10.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/mb-01-little-kid-queen-city-385116-10', 'flightClub': 'https://flightclub.com/mb-01-little-kid-queen-city-385116-10', 'stadiumGoods': ''}" +71f4bcfe-3aa4-4ede-abc6-f44a0b7dc602,DH4444-900,Nike,Nike Dunk High CLOT Flux,Metallic Silver/White,men,Dunk,2022,2022-03-18,150,169,"The CLOT x Nike Dunk High ‘Flux’ presents Edison Chen’s futuristic interpretation of the classic silhouette. Drawing inspiration from the yin-yang philosophy of fluidity and harmony, the CLOT founder outfits the shoe in a unique lenticular construction that displays a shimmering, chrome-like effect. The Swoosh and signature overlays are replaced with topstitch detailing to maintain the shoe’s sleek aesthetic. Atop the tongue, a co-branded tag reveals a CLOT or Nike logo depending on the viewing angle. A durable rubber cupsole in a solid white finish anchors the high-top.","{'360': ['https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797', 'https://images.stockx.com/360/Nike-Dunk-High-CLOT-Metallic-Silver/Images/Nike-Dunk-High-CLOT-Metallic-Silver/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647536797'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/293/338/original/891500_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/293/338/original/891500_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/293/338/original/891500_00.png.png'}","{'stockX': 'https://stockx.com/nike-dunk-high-clot-metallic-silver', 'goat': 'https://goat.com/sneakers/clot-x-dunk-high-silver-metallic-dh4444-900', 'flightClub': 'https://flightclub.com/clot-x-dunk-high-silver-metallic-dh4444-900', 'stadiumGoods': ''}" +78cfb60f-e2c0-4908-820d-490aad3659ea,DQ8571-001,Nike,Nike Air Force 1 Low LX Off Noir Black,Off Noir/Off Noir-Black,men,Air Force 1,2022,2022-03-18,130,153,"The Nike Air Force 1 Low LX ‘Off-Noir’ brings a minimalist, monochromatic aesthetic to the sneaker icon. The low-top carries a blacked-out nubuck upper with waxed laces, perforated detailing on the toe box, and a padded low-cut collar lined in breathable mesh. A white Swoosh is embroidered on the tongue tag and leather heel tab, the only elements that disrupt the shoe’s one-note finish. The retro silhouette rests on a Summit White rubber cupsole with encapsulated Air-sole cushioning in the heel.","{'360': ['https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385', 'https://images.stockx.com/360/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Images/Nike-Air-Force-1-Low-LX-Off-Noir-Black/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1646410385'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/067/655/888/original/886779_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/067/655/888/original/886779_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/067/655/888/original/886779_00.png.png'}","{'stockX': 'https://stockx.com/nike-air-force-1-low-lx-off-noir-black', 'goat': 'https://goat.com/sneakers/air-force-1-low-lx-off-noir-dq8571-001', 'flightClub': 'https://flightclub.com/air-force-1-low-lx-off-noir-dq8571-001', 'stadiumGoods': ''}" +84e3fe18-6173-4b74-b31d-12810cd99a6b,195170-08,Puma,Magnify Nitro 'Cherry Tomato',Cherry Tomato/Asphalt,men,Magnify Nitro,2022,2022-03-18,140,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/482/original/195170_08.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/482/original/195170_08.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/482/original/195170_08.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/magnify-nitro-cherry-tomato-195170-08', 'flightClub': 'https://flightclub.com/magnify-nitro-cherry-tomato-195170-08', 'stadiumGoods': ''}" +8832cc63-0c7a-4441-a881-18e10e04bdb1,GY1069,Reebok,Reebok Club C 85 Eames Dot Pattern,Modern Beige/Modern Beige/Core Black,men,Club C,2022,2022-03-18,120,122,"The Eames Office x Reebok Club C 85 ‘Dot Pattern’ delivers the iconic design studio’s take on the retro ‘80s silhouette. Lined in soft terry cloth, the tan jacquard upper is covered in a unique dot pattern created by Ray Eames in 1947. A logo window on the lateral side reveals the Eames logo, while a dual-branded woven tag decorates the tongue. The sneaker is mounted on a durable beige rubber cupsole, featuring an exposed EVA wedge on the medial sidewall.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/063/600/019/original/845489_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/063/600/019/original/845489_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/063/600/019/original/845489_00.png.png'}","{'stockX': 'https://stockx.com/reebok-club-c-85-eames-dot-pattern', 'goat': 'https://goat.com/sneakers/eames-office-x-club-c-85-dot-pattern-gy1069', 'flightClub': 'https://flightclub.com/eames-office-x-club-c-85-dot-pattern-gy1069', 'stadiumGoods': ''}" +88946956-7de7-44bd-8c18-e07f18d88760,586398-WHX52-1066,Alexander McQueen,Alexander McQueen Wmns Hybrid Chelsea Boot 'Black Red',Black/Red,women,Alexander McQueen Hybrid Ankle Boot,2022,2022-03-18,650,650,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/374/702/original/586398_WHX52_1066.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/374/702/original/586398_WHX52_1066.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/374/702/original/586398_WHX52_1066.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/alexander-mcqueen-wmns-hybrid-chelsea-boot-black-red-586398-whx52-1066', 'flightClub': 'https://flightclub.com/alexander-mcqueen-wmns-hybrid-chelsea-boot-black-red-586398-whx52-1066', 'stadiumGoods': ''}" +9033007a-19f8-4de3-b270-8f17fde1b2e6,343938-632,Nike,Dynamo Free TD 'Pink Glaze Melon Tint',Pink Glaze/Light Violet Ore/Melon Tint,infant,Dynamo Free,2022,2022-03-18,55,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/536/original/343938_632.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/536/original/343938_632.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/536/original/343938_632.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/dynamo-free-td-pink-glaze-melon-tint-343938-632', 'flightClub': 'https://flightclub.com/dynamo-free-td-pink-glaze-melon-tint-343938-632', 'stadiumGoods': ''}" +9ae4bb9d-d8f5-4f1c-bd98-00877da88fb5,377237-10,Puma,MB.01 'Queen City',Purple Glimmer/Blue Atoll,men,MB.01,2022,2022-03-18,0,185,"The PUMA MB.01 ‘Queen City’ updates LaMelo Ball’s debut signature shoe with a familiar color palette that gives the nod to the Charlotte Hornets. A bold violet hue floods the engineered knit upper, reinforced with tonal no-sew overlays and accented with teal branding elements. They include an outlined Formstrip on the lateral toe box and LaMelo’s personal logo on the tongue. Lightweight cushioning comes courtesy of a Nitro Foam midsole in a matching purple finish.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/643/478/original/904682_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/643/478/original/904682_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/643/478/original/904682_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/mb-01-purple-glimmer-377237-10', 'flightClub': 'https://flightclub.com/mb-01-purple-glimmer-377237-10', 'stadiumGoods': ''}" +a2400233-b1b0-4edb-b982-b9c82e16dcdb,DJ6229-200,Nike,Nike Offline 2.0 Velvet Brown Noble Green,Velvet Brown/Noble Green/Light Bone/Velvet Brown,men,Offline Slip-On,2022,2022-03-18,130,96,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/894/239/original/DJ6229_200.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/894/239/original/DJ6229_200.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/894/239/original/DJ6229_200.png.png'}","{'stockX': 'https://stockx.com/nike-offline-20-velvet-brown-noble-green', 'goat': 'https://goat.com/sneakers/offline-2-0-slip-on-velvet-brown-dj6229-200', 'flightClub': 'https://flightclub.com/offline-2-0-slip-on-velvet-brown-dj6229-200', 'stadiumGoods': ''}" +a6d67fef-6982-4e75-adb2-2ca19c87e9a3,HP5425,adidas,adidas Yeezy 700 V3 Mono Safflower,Mono Safflower/Mono Safflower/Mono Safflower,men,Yeezy 700 V3,2022,2022-03-18,200,212,,"{'360': ['https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369', 'https://images.stockx.com/360/adidas-Yeezy-700-V3-Mono-Safflower/Images/adidas-Yeezy-700-V3-Mono-Safflower/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648065369'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/528/147/original/912778_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/528/147/original/912778_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/528/147/original/912778_00.png.png'}","{'stockX': 'https://stockx.com/adidas-yeezy-700-v3-mono-safflower', 'goat': 'https://goat.com/sneakers/yeezy-700-v3-mono-safflower-hp5425', 'flightClub': 'https://flightclub.com/yeezy-700-v3-mono-safflower-hp5425', 'stadiumGoods': ''}" +abb67977-5182-4726-adfc-6305aad9f651,385117-10,Puma,MB.01 Infant 'Queen City',Purple Glimmer/Blue Atoll,infant,MB.01,2022,2022-03-18,65,79,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/987/476/original/913265_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/987/476/original/913265_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/987/476/original/913265_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/mb-01-infant-queen-city-385117-10', 'flightClub': 'https://flightclub.com/mb-01-infant-queen-city-385117-10', 'stadiumGoods': ''}" +b9a6182d-d0eb-4d01-a1bb-3470be935e14,688548-WIC94-1000,Alexander McQueen,Alexander McQueen Sprint Runner 'Black',Black/Black,men,Alexander McQueen Sprint Runner,2022,2022-03-18,0,750,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/607/349/original/688548_WIC94_1000.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/607/349/original/688548_WIC94_1000.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/607/349/original/688548_WIC94_1000.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/alexander-mcqueen-sprint-runner-black-688548-wic94-1000', 'flightClub': 'https://flightclub.com/alexander-mcqueen-sprint-runner-black-688548-wic94-1000', 'stadiumGoods': ''}" +b9dc9e2e-47b0-44c5-a909-d14ae65fadae,MTMORLH2-2E,New Balance,Fresh Foam X More Trail v2 2E Wide 'Harvest Gold Mountain Teal',Harvest Gold/Mountain Teal,men,Fresh Foam X More,2022,2022-03-18,165,165,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/773/original/MTMORLH2_2E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/773/original/MTMORLH2_2E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/773/original/MTMORLH2_2E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-x-more-trail-v2-2e-wide-harvest-gold-mountain-teal-mtmorlh2-2e', 'flightClub': 'https://flightclub.com/fresh-foam-x-more-trail-v2-2e-wide-harvest-gold-mountain-teal-mtmorlh2-2e', 'stadiumGoods': ''}" +c636b8c2-b9c3-4fe2-99a8-46e6109c42bb,CM1600VN,New Balance,New Balance 1600 Premium Vintage Navy,Vintage Navy/Grey/Off White,men,New Balance 1600,2022,2022-03-18,165,448,,"{'360': [], 'original': 'https://images.stockx.com/images/New-Balance-1600-Premium-Vintage-Navy.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648021405', 'small': 'https://images.stockx.com/images/New-Balance-1600-Premium-Vintage-Navy.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648021405', 'thumbnail': 'https://images.stockx.com/images/New-Balance-1600-Premium-Vintage-Navy.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1648021405'}","{'stockX': 'https://stockx.com/new-balance-1600-premium-vintage-navy', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +c994b24f-6f73-4d7e-a41a-1c04e979aca0,376886-10,Puma,MB.01 Jr 'Queen City',Purple Glimmer/Blue Atoll,youth,MB.01,2022,2022-03-18,90,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/934/672/original/912723_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/934/672/original/912723_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/934/672/original/912723_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/mb-01-jr-queen-city-376886-10', 'flightClub': 'https://flightclub.com/mb-01-jr-queen-city-376886-10', 'stadiumGoods': ''}" +cffd6bc0-cc55-4c15-8f03-d177c89d8e51,201.178535-45032,Diadora,Diadora N9000 Loop Breakfast,Blue Strong/White/Grey,unisex,Diadora N9000,2022,2022-03-18,230,500,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': 'https://stockx.com/diadora-n9000-loop-breakfast', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +d1324116-de71-49f3-b792-30332bf0da38,GZ0235,Reebok,Wmns Lite 3 'Vector Navy Quartz Glow',Vector Navy/Opal Glow/Quartz Glow,women,Lite 3.0,2022,2022-03-18,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/681/original/GZ0235.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/681/original/GZ0235.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/681/original/GZ0235.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-lite-3-vector-navy-quartz-glow-gz0235', 'flightClub': 'https://flightclub.com/wmns-lite-3-vector-navy-quartz-glow-gz0235', 'stadiumGoods': ''}" +d97410f9-ef06-44f0-8f3f-087a615118a9,201.178536-60037,Diadora,Diadora Mi Basket Row Cut Milk Breakfast,Fre Red/Italy/Black/Pink,unisex,Diadora Mi Basket Row Cut,2022,2022-03-18,220,220,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': 'https://stockx.com/diadora-mi-basket-row-cut-milk-breakfast', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +0db8d255-b061-47b3-96cb-9611d5054977,1203A087-300,ASICS,Gel Bondal 'Mantle Green',Mantle Green/Black,men,Gel Bondal,2022,2022-03-17,65,89,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/524/original/1203A087_300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/524/original/1203A087_300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/524/original/1203A087_300.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-bondal-mantle-green-1203a087-300', 'flightClub': 'https://flightclub.com/gel-bondal-mantle-green-1203a087-300', 'stadiumGoods': ''}" +17e44ef6-c9ae-409c-a31d-b6dd0b377e8a,DH7338-001,Nike,Nike Air Trainer 1 SP Dark Smoke Grey,Dark Smoke Grey/Black/Iron Grey/Off Noir,men,Air Trainer 1,2022,2022-03-17,140,103,,"{'360': ['https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588', 'https://images.stockx.com/360/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Images/Nike-Air-Trainer-1-SP-Dark-Smoke-Grey/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648234588'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/643/336/original/890915_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/643/336/original/890915_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/643/336/original/890915_00.png.png'}","{'stockX': 'https://stockx.com/nike-air-trainer-1-sp-dark-smoke-grey', 'goat': 'https://goat.com/sneakers/air-trainer-1-utility-dark-smoke-grey-dh7338-001', 'flightClub': 'https://flightclub.com/air-trainer-1-utility-dark-smoke-grey-dh7338-001', 'stadiumGoods': ''}" +19aaf91f-36ea-4633-9b9c-4f11392776b5,FREEZO3-2E,New Balance,FreezeLX v3 2E Wide 'White Orange',White/Grey/Orange,men,FreezeLX,2022,2022-03-17,115,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/683/original/FREEZO3_2E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/683/original/FREEZO3_2E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/683/original/FREEZO3_2E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freezelx-v3-2e-wide-white-orange-freezo3-2e', 'flightClub': 'https://flightclub.com/freezelx-v3-2e-wide-white-orange-freezo3-2e', 'stadiumGoods': ''}" +1f0aa960-e021-444e-b5a0-92c1200ac537,RUSHMB3,New Balance,RushV3 Mid 'Black White',Black/White,men,Rush,2022,2022-03-17,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/675/original/RUSHMB3.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/675/original/RUSHMB3.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/675/original/RUSHMB3.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rushv3-mid-black-white-rushmb3', 'flightClub': 'https://flightclub.com/rushv3-mid-black-white-rushmb3', 'stadiumGoods': ''}" +2371d82d-212d-46c1-a623-0376bc09586e,DQ3558-002,Nike,Vapor Edge Elite 360 Flyknit 'Black Metallic Gold',Black/White/Dark Smoke Grey/Metallic Gold,men,Vapor Edge,2022,2022-03-17,200,280,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/974/original/DQ3558_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/974/original/DQ3558_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/974/original/DQ3558_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/vapor-edge-elite-360-flyknit-black-metallic-gold-dq3558-002', 'flightClub': 'https://flightclub.com/vapor-edge-elite-360-flyknit-black-metallic-gold-dq3558-002', 'stadiumGoods': ''}" +25f8077c-adc9-439e-ac3c-1dee5457aa34,MS327PW,New Balance,327 'White Natural Pink',White/Natural Pink,men,327,2022,2022-03-17,110,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/672/original/MS327PW.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/672/original/MS327PW.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/672/original/MS327PW.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/327-white-natural-pink-ms327pw', 'flightClub': 'https://flightclub.com/327-white-natural-pink-ms327pw', 'stadiumGoods': ''}" +305ff850-1bc9-484b-bdb1-5a79addb867f,1072A055-105,ASICS,Wmns Upcourt 4 'White Periwinkle Blue',White/Periwinkle Blue,women,Upcourt,2022,2022-03-17,55,89,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/512/original/1072A055_105.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/512/original/1072A055_105.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/512/original/1072A055_105.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-upcourt-4-white-periwinkle-blue-1072a055-105', 'flightClub': 'https://flightclub.com/wmns-upcourt-4-white-periwinkle-blue-1072a055-105', 'stadiumGoods': ''}" +4b663df1-7feb-4316-9db5-8f580736010e,DR9873-100,Nike,Wmns Revolution 6 'White Washed Teal',White/Barely Green/Washed Teal/Arctic Orange,women,Revolution 6,2022,2022-03-17,65,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/977/original/DR9873_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/977/original/DR9873_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/977/original/DR9873_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-revolution-6-white-washed-teal-dr9873-100', 'flightClub': 'https://flightclub.com/wmns-revolution-6-white-washed-teal-dr9873-100', 'stadiumGoods': ''}" +4db1c362-066d-4984-b210-7a2be9036395,195634-06,Puma,Court Rider I 'Yellow Glow',Yellow Glow/White,men,Court Rider,2022,2022-03-17,100,748,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/932/original/195634_06.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/932/original/195634_06.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/932/original/195634_06.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/court-rider-i-yellow-glow-195634-06', 'flightClub': 'https://flightclub.com/court-rider-i-yellow-glow-195634-06', 'stadiumGoods': ''}" +4e7d385b-4151-4d41-bbf8-62e6a154e620,MARISMW3-4E,New Balance,Fresh Foam Arishi v3 4E Wide 'Angora Timberwolf',Angora/Timberwolf/Night Tide,men,Fresh Foam Arishi,2022,2022-03-17,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/713/original/MARISMW3_4E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/713/original/MARISMW3_4E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/713/original/MARISMW3_4E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-arishi-v3-4e-wide-angora-timberwolf-marismw3-4e', 'flightClub': 'https://flightclub.com/fresh-foam-arishi-v3-4e-wide-angora-timberwolf-marismw3-4e', 'stadiumGoods': ''}" +55f0b4a6-7e83-4545-b291-fae022477730,GX3905,adidas,Predator LZ FG 'Solar Pink',Solar Pink/Core Black/Cloud White,men,Predator LZ,2022,2022-03-17,250,220,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/994/original/GX3905.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/994/original/GX3905.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/994/original/GX3905.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/predator-lz-fg-solar-pink-gx3905', 'flightClub': 'https://flightclub.com/predator-lz-fg-solar-pink-gx3905', 'stadiumGoods': ''}" +5c3ba0ec-2187-4248-bb44-1aa765cecb62,MARISMW3,New Balance,Fresh Foam Arishi v3 'Angora Timberwolf',Angora/Timberwolf/Night Tide,men,Fresh Foam Arishi,2022,2022-03-17,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/667/original/MARISMW3.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/667/original/MARISMW3.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/667/original/MARISMW3.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-arishi-v3-angora-timberwolf-marismw3', 'flightClub': 'https://flightclub.com/fresh-foam-arishi-v3-angora-timberwolf-marismw3', 'stadiumGoods': ''}" +63c6a98c-e338-4408-a3eb-fb2160321335,1012A908-708,ASICS,Wmns Jolt 'Pink Glow',Pink Glow/White,women,Jolt,2022,2022-03-17,55,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/493/original/1012A908_708.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/493/original/1012A908_708.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/493/original/1012A908_708.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-jolt-pink-glow-1012a908-708', 'flightClub': 'https://flightclub.com/wmns-jolt-pink-glow-1012a908-708', 'stadiumGoods': ''}" +647f9def-7b2e-4849-a58e-50d102fb09b8,GY0929,adidas,adidas Adizero Boston 10 Boston Marathon,Victory Blue/Cloud White/Solar Yellow,men,Adizero Boston 10,2022,2022-03-17,140,210,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/894/317/original/GY0929.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/894/317/original/GY0929.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/894/317/original/GY0929.png.png'}","{'stockX': 'https://stockx.com/adidas-adizero-boston-10-boston-marathon', 'goat': 'https://goat.com/sneakers/adizero-boston-10-victory-blue-solar-yellow-gy0929', 'flightClub': 'https://flightclub.com/adizero-boston-10-victory-blue-solar-yellow-gy0929', 'stadiumGoods': ''}" +6ba78994-2ebe-446f-b565-4370673845d1,GY9642,adidas,Multix 'Light Brown Hazy Emerald',Light Brown/Hazy Emerald/Orange Rush,men,Multix,2022,2022-03-17,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/995/original/GY9642.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/995/original/GY9642.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/995/original/GY9642.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/multix-light-brown-hazy-emerald-gy9642', 'flightClub': 'https://flightclub.com/multix-light-brown-hazy-emerald-gy9642', 'stadiumGoods': ''}" +6ceed005-b517-40a5-9970-dccce576d34d,172815C,Converse,Chuck Taylor All Star CX FlyEase 'Egret Light Silver',Egret/String/Light Silver,men,Chuck Taylor All Star,2022,2022-03-17,90,160,"The Chuck Taylor All Star CX FlyEase ‘Egret Light Silver’ treats the foundational sneaker to a comprehensive design overhaul centered around Nike’s groundbreaking FlyEase technology. The low-top utilizes an off-white stretch canvas upper with a restructured heel that collapses and springs back, allowing for hands-free on and off. A green-tinged translucent cage wraps around the back of the midsole, revealing lightweight CX foam cushioning. Underfoot, an outsole pattern inspired by the original Chuck Taylor delivers reliable traction.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/930/original/172815C.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/930/original/172815C.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/930/original/172815C.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/chuck-taylor-all-star-cx-flyease-egret-light-silver-172815c', 'flightClub': 'https://flightclub.com/chuck-taylor-all-star-cx-flyease-egret-light-silver-172815c', 'stadiumGoods': ''}" +7401cd3a-b428-47a4-9ab6-11f455916544,172349C,Converse,Converse One Star Ox Renew Remix Dark Moss,Dark Moss/White,men,Converse One Star Ox,2022,2022-03-17,80,224,,"{'360': [], 'original': 'https://images.stockx.com/images/Converse-One-Star-Ox-Renew-Remix-Dark-Moss.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1647330015', 'small': 'https://images.stockx.com/images/Converse-One-Star-Ox-Renew-Remix-Dark-Moss.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1647330015', 'thumbnail': 'https://images.stockx.com/images/Converse-One-Star-Ox-Renew-Remix-Dark-Moss.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1647330015'}","{'stockX': 'https://stockx.com/converse-one-star-ox-renew-remix-dark-moss', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +98cf4cda-20c3-4af2-83bc-02c04014ad63,MARISMK3-2E,New Balance,Fresh Foam Arishi v3 2E Wide 'Black Phantom',Black/Phantom/Deep Earth Red,men,Fresh Foam Arishi,2022,2022-03-17,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/707/original/MARISMK3_2E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/707/original/MARISMK3_2E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/707/original/MARISMK3_2E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-arishi-v3-2e-wide-black-phantom-marismk3-2e', 'flightClub': 'https://flightclub.com/fresh-foam-arishi-v3-2e-wide-black-phantom-marismk3-2e', 'stadiumGoods': ''}" +9bfd256e-9a67-498c-b81d-4b2f43f63b36,RUSHMB3-2E,New Balance,Rush v3 Mid 2E Wide 'Black White',Black/White,men,Rush,2022,2022-03-17,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/727/original/RUSHMB3_2E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/727/original/RUSHMB3_2E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/727/original/RUSHMB3_2E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rush-v3-mid-2e-wide-black-white-rushmb3-2e', 'flightClub': 'https://flightclub.com/rush-v3-mid-2e-wide-black-white-rushmb3-2e', 'stadiumGoods': ''}" +9ea9e0eb-1e18-496c-8e4b-9c27172588af,MARISMK3,New Balance,Fresh Foam Arishi v3 'Black Phantom',Black/Phantom/Deep Earth Red,men,Fresh Foam Arishi,2022,2022-03-17,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/664/original/MARISMK3.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/664/original/MARISMK3.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/664/original/MARISMK3.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-arishi-v3-black-phantom-marismk3', 'flightClub': 'https://flightclub.com/fresh-foam-arishi-v3-black-phantom-marismk3', 'stadiumGoods': ''}" +9ef713da-361f-4c1e-8304-3cc8536b63fb,172805C,Converse,Chuck Taylor All Star CX FlyEase 'Black Wild Mango',Black/White/Wild Mango,men,Chuck Taylor All Star,2022,2022-03-17,105,129,"The Converse Chuck Taylor All Star CX FlyEase ‘Black Wild Mango’ brings Nike’s groundbreaking easy-entry technology to the sneaker icon. Black stretch canvas is utilized on the upper, featuring traditional lace closure and an innovative TPE heel cage that’s designed to flex and collapse, allowing wearers to step into the shoe hands-free. The heel then rebounds, locking the foot in place. The sneaker rides on a bright orange CX foam midsole, made visible through a wraparound translucent heel cage.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/334/557/original/905047_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/334/557/original/905047_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/334/557/original/905047_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/chuck-taylor-all-star-cx-flyease-black-wild-mango-172805c', 'flightClub': 'https://flightclub.com/chuck-taylor-all-star-cx-flyease-black-wild-mango-172805c', 'stadiumGoods': ''}" +a0d84ea9-8ddc-40d1-a085-822170890d10,1202A164-108,ASICS,Wmns Gel 1130 'White Butter',White/Butter,women,Gel 1130,2022,2022-03-17,85,85,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/515/original/1202A164_108.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/515/original/1202A164_108.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/515/original/1202A164_108.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-1130-white-butter-1202a164-108', 'flightClub': 'https://flightclub.com/wmns-gel-1130-white-butter-1202a164-108', 'stadiumGoods': ''}" +bd7a0bf3-3317-4b24-9cc8-b1bc81fd85b5,FREEZO3,New Balance,FreezeLX v3 'White Orange',White/Grey/Orange,men,FreezeLX,2022,2022-03-17,115,115,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/685/original/FREEZO3.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/685/original/FREEZO3.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/685/original/FREEZO3.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freezelx-v3-white-orange-freezo3', 'flightClub': 'https://flightclub.com/freezelx-v3-white-orange-freezo3', 'stadiumGoods': ''}" +be3fde38-dab8-4011-a7ba-27a26afd6a67,GX3904,adidas,Predator Edge LZ+ FG 'Solar Pink',Solar Pink/Core Black/Cloud White,men,Predator Edge LZ+,2022,2022-03-17,280,350,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/990/original/GX3904.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/990/original/GX3904.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/990/original/GX3904.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/predator-edge-lz-fg-solar-pink-gx3904', 'flightClub': 'https://flightclub.com/predator-edge-lz-fg-solar-pink-gx3904', 'stadiumGoods': ''}" +c2b9c2ff-8cdc-401d-99af-c82358faf9fd,1203A104-020,ASICS,Gel Quantum 90 SD 'Piedmont Grey',Piedmont Grey/Black,men,Gel Quantum 90,2022,2022-03-17,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/525/original/1203A104_020.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/525/original/1203A104_020.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/525/original/1203A104_020.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-90-sd-piedmont-grey-1203a104-020', 'flightClub': 'https://flightclub.com/gel-quantum-90-sd-piedmont-grey-1203a104-020', 'stadiumGoods': ''}" +c439b48c-cf97-4293-b29a-e29e39e1d4e9,106529-03,Puma,Ultra 3.3 FG AG Jr 'Green Glare',Green Glare/Elektro Aqua/Spellbound,youth,Ultra 3.3,2022,2022-03-17,60,60,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/509/original/106529_03.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/509/original/106529_03.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/509/original/106529_03.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultra-3-3-fg-ag-jr-green-glare-106529-03', 'flightClub': 'https://flightclub.com/ultra-3-3-fg-ag-jr-green-glare-106529-03', 'stadiumGoods': ''}" +c9c13104-af4e-425a-b44f-d53d4b2ac240,CZ5631-016,Nike,Reposto 'Black Anthracite',Black/Anthracite/Light Curry/Off Noir,men,Reposto,2022,2022-03-17,70,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/962/original/CZ5631_016.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/962/original/CZ5631_016.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/962/original/CZ5631_016.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/reposto-black-anthracite-cz5631-016', 'flightClub': 'https://flightclub.com/reposto-black-anthracite-cz5631-016', 'stadiumGoods': ''}" +cb26eb12-4e37-4d2d-a88c-7c58d50635ca,AT5889-011,Nike,Premier 3 FG 'Pure Platinum',Pure Platinum/Black/Metallic Vivid Gold/White,men,Premier 3,2022,2022-03-17,110,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/955/original/AT5889_011.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/955/original/AT5889_011.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/955/original/AT5889_011.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/premier-3-fg-pure-platinum-at5889-011', 'flightClub': 'https://flightclub.com/premier-3-fg-pure-platinum-at5889-011', 'stadiumGoods': ''}" +da6e27ce-fff7-4508-ad99-fc8c8d96b98e,172806C,Converse,Chuck Taylor All Star CX FlyEase 'White Wild Mango',White/Black/Wild Mango,men,Chuck Taylor All Star,2022,2022-03-17,105,119,"The Converse Chuck Taylor All Star CX FlyEase ‘White Wild Mango’ overhauls the foundational sneaker with Nike’s revolutionary easy access technology. Constructed from stretch white canvas, the streamlined upper features a padded low-cut collar and a TPE heel cage that flexes, collapses, and rebounds, enabling hands-free on and off. Lightweight cushioning is provided by an orange CX foam midsole, exposed through a translucent cage that wraps around the heel.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/374/644/original/172806C.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/374/644/original/172806C.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/374/644/original/172806C.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/chuck-taylor-all-star-cx-flyease-white-wild-mango-172806c', 'flightClub': 'https://flightclub.com/chuck-taylor-all-star-cx-flyease-white-wild-mango-172806c', 'stadiumGoods': ''}" +e824adae-c9fd-45ee-98b4-303c549feeaa,CM997HTE,New Balance,New Balance 997H Cordura Moon Shadow,Moon Shadow/Vibrant Apricot,men,997H,2022,2022-03-17,90,99,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/587/original/CM997HTE.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/587/original/CM997HTE.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/587/original/CM997HTE.png.png'}","{'stockX': 'https://stockx.com/new-balance-997h-cordura-moon-shadow', 'goat': 'https://goat.com/sneakers/997h-moon-shadow-vibrant-apricot-cm997hte', 'flightClub': 'https://flightclub.com/997h-moon-shadow-vibrant-apricot-cm997hte', 'stadiumGoods': ''}" +ece083e6-dda7-4ee9-9690-a7739a0c20c4,1014A209-701,ASICS,Gel Noosa Tri 13 GS 'Color Injection Pack - Glow Yellow',Glow Yellow/Glow Yellow,youth,Gel Noosa,2022,2022-03-17,65,65,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/499/original/1014A209_701.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/499/original/1014A209_701.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/499/original/1014A209_701.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-noosa-tri-13-gs-color-injection-pack-glow-yellow-1014a209-701', 'flightClub': 'https://flightclub.com/gel-noosa-tri-13-gs-color-injection-pack-glow-yellow-1014a209-701', 'stadiumGoods': ''}" +f61c6158-d332-4702-afa3-0b81dd6ab740,1052A033-100,ASICS,Wmns Netburner Ballistic FF 2 'White Black',White/Black,women,Netburner Ballistic FF,2022,2022-03-17,115,175,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/505/original/1052A033_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/505/original/1052A033_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/505/original/1052A033_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-netburner-ballistic-ff-2-white-black-1052a033-100', 'flightClub': 'https://flightclub.com/wmns-netburner-ballistic-ff-2-white-black-1052a033-100', 'stadiumGoods': ''}" +f8dfc724-a329-4265-b143-4db02ca4aed5,MARISMW3-2E,New Balance,Fresh Foam Arishi v3 2E Wide 'Angora Timberwolf',Angora/Timberwolf/Night Tide,men,Fresh Foam Arishi,2022,2022-03-17,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/712/original/MARISMW3_2E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/712/original/MARISMW3_2E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/712/original/MARISMW3_2E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-arishi-v3-2e-wide-angora-timberwolf-marismw3-2e', 'flightClub': 'https://flightclub.com/fresh-foam-arishi-v3-2e-wide-angora-timberwolf-marismw3-2e', 'stadiumGoods': ''}" +fd1d29f7-b4ed-4b15-8b64-88c4010d02e3,1072A055-013,ASICS,Wmns Upcourt 4 'Black Fresh Ice',Black/Fresh Ice,women,Upcourt,2022,2022-03-17,55,98,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/510/original/1072A055_013.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/510/original/1072A055_013.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/510/original/1072A055_013.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-upcourt-4-black-fresh-ice-1072a055-013', 'flightClub': 'https://flightclub.com/wmns-upcourt-4-black-fresh-ice-1072a055-013', 'stadiumGoods': ''}" +fdaf93b7-ff2c-4138-965b-9a8ca68302f6,MARISMK3-4E,New Balance,Fresh Foam Arishi v3 4E Wide 'Black Phantom',Black/Phantom/Deep Earth Red,men,Fresh Foam Arishi,2022,2022-03-17,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/708/original/MARISMK3_4E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/708/original/MARISMK3_4E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/708/original/MARISMK3_4E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-arishi-v3-4e-wide-black-phantom-marismk3-4e', 'flightClub': 'https://flightclub.com/fresh-foam-arishi-v3-4e-wide-black-phantom-marismk3-4e', 'stadiumGoods': ''}" +0012aafe-2a7b-48d9-8b3d-2a94dc8e9f15,1011A824-601,ASICS,Gel Venture 8 'Fiery Red',Fiery Red/Sheet Rock,men,Gel Venture,2022,2022-03-16,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/486/original/1011A824_601.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/486/original/1011A824_601.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/486/original/1011A824_601.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-venture-8-fiery-red-1011a824-601', 'flightClub': 'https://flightclub.com/gel-venture-8-fiery-red-1011a824-601', 'stadiumGoods': ''}" +026ceef0-1655-4ef0-ab0c-1bbccc5e33c1,1204A015-104,ASICS,Tiger Runner GS 'White Ginger Peach',White/Ginger Peach,youth,Tiger Runner,2022,2022-03-16,55,55,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/698/original/1204A015_104.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/698/original/1204A015_104.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/698/original/1204A015_104.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/tiger-runner-gs-white-ginger-peach-1204a015-104', 'flightClub': 'https://flightclub.com/tiger-runner-gs-white-ginger-peach-1204a015-104', 'stadiumGoods': ''}" +03e52d87-ab74-4646-b7b7-8812fe10b4a4,GW7453,adidas,X Speedflow.1 FG 'Purple Rush Mint Rush',Purple Rush/Silver Metallic/Mint Rush,men,X Speedflow.1,2022,2022-03-16,250,320,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/816/original/GW7453.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/816/original/GW7453.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/816/original/GW7453.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/x-speedflow-1-fg-purple-rush-mint-rush-gw7453', 'flightClub': 'https://flightclub.com/x-speedflow-1-fg-purple-rush-mint-rush-gw7453', 'stadiumGoods': ''}" +0629e3a4-527e-4738-9fa7-021aff45f10d,1012B199-020,ASICS,Wmns Gel Nimbus 24 Wide 'Piedmont Grey Lime Green',Piedmont Grey/Lime Green,women,Gel Nimbus,2022,2022-03-16,160,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/494/original/1012B199_020.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/494/original/1012B199_020.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/494/original/1012B199_020.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-nimbus-24-wide-piedmont-grey-lime-green-1012b199-020', 'flightClub': 'https://flightclub.com/wmns-gel-nimbus-24-wide-piedmont-grey-lime-green-1012b199-020', 'stadiumGoods': ''}" +07d26e3f-3032-4df6-96d5-ea301fd455e3,384060-01,Puma,Wmns Cruise Rider Re:Style 'Triple White',White,women,Court Rider,2022,2022-03-16,100,748,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/936/original/384060_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/936/original/384060_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/936/original/384060_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-cruise-rider-re-style-triple-white-384060-01', 'flightClub': 'https://flightclub.com/wmns-cruise-rider-re-style-triple-white-384060-01', 'stadiumGoods': ''}" +0830931b-982a-4dd7-bf9c-76b12fc6db45,375694-04,Puma,Soft Sandal Jr 'White Ocean Dive',White/Ocean Dive,youth,Softride Slide,2022,2022-03-16,45,45,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/531/original/375694_04.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/531/original/375694_04.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/531/original/375694_04.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/soft-sandal-jr-white-ocean-dive-375694-04', 'flightClub': 'https://flightclub.com/soft-sandal-jr-white-ocean-dive-375694-04', 'stadiumGoods': ''}" +0d5fa02f-7921-4cc1-8458-c87b320f0c7a,1012A911-402,ASICS,Wmns Gel Contend 7 'Aqua Angel',Aqua Angel/White,women,Gel Contend,2022,2022-03-16,65,65,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-contend-7-aqua-angel-1012a911-402', 'flightClub': 'https://flightclub.com/wmns-gel-contend-7-aqua-angel-1012a911-402', 'stadiumGoods': ''}" +0da7d5cb-86f7-4dce-839b-4c87617b4d6c,1011B040-021,ASICS,Gel Contend 7 'Graphite Grey',Graphite Grey/Directoire Blue,men,Gel Contend,2022,2022-03-16,65,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/897/original/1011B040_021.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/897/original/1011B040_021.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/897/original/1011B040_021.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-contend-7-graphite-grey-1011b040-021', 'flightClub': 'https://flightclub.com/gel-contend-7-graphite-grey-1011b040-021', 'stadiumGoods': ''}" +205ad4c1-63d8-4470-a6ec-3e0db0bfabe6,W991SNS,New Balance,New Balance 991 SNS Yellow Blue (W),White/Blue/Yellow,women,991,2022,2022-03-16,259,122,"The Sneakersnstuff x New Balance women’s 991 Made in England ‘Secret Colorway’ is inspired by the Swedish retailer’s first ever collaboration with New Balance: two 577 colorways developed in 2005 by SNS founders Peter and Erik. The latter’s design was color-adjusted following an initial batch of 96 pairs, which was released by SNS as a ‘Secret Colorway.’ Modeled after that shoe, this pair combines a white leather base with contrasting overlays in mint green suede and yellow leather. The sneaker is finished with a two-tone ABZORB midsole.","{'360': ['https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320', 'https://images.stockx.com/360/New-Balance-991-SNS-Yellow-Blue-W/Images/New-Balance-991-SNS-Yellow-Blue-W/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1647617320'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/049/550/original/W991SNS.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/049/550/original/W991SNS.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/049/550/original/W991SNS.png.png'}","{'stockX': 'https://stockx.com/new-balance-991-sns-yellow-blue-w', 'goat': 'https://goat.com/sneakers/sneakersnstuff-x-wmns-991-made-in-england-secret-colorway-w991sns', 'flightClub': 'https://flightclub.com/sneakersnstuff-x-wmns-991-made-in-england-secret-colorway-w991sns', 'stadiumGoods': ''}" +21532ec0-9c95-4aa0-952e-1a3fffb2ec4b,CZ6557-600,Nike,Alpha Huarache 8 GS 'Hyper Pink',Hyper Pink/Arctic Punch/Black/White,youth,Alpha Huarache,2022,2022-03-16,55,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/790/original/CZ6557_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/790/original/CZ6557_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/790/original/CZ6557_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/alpha-huarache-8-gs-hyper-pink-cz6557-600', 'flightClub': 'https://flightclub.com/alpha-huarache-8-gs-hyper-pink-cz6557-600', 'stadiumGoods': ''}" +278e3005-4809-448d-a483-761a16ee0a0a,GY6589,adidas,Cloudfoam Pure Slip-On J 'White Acid Red',Cloud White/Acid Red/Grey Three,youth,Cloudfoam Pure,2022,2022-03-16,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/830/original/GY6589.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/830/original/GY6589.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/830/original/GY6589.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/cloudfoam-pure-slip-on-j-white-acid-red-gy6589', 'flightClub': 'https://flightclub.com/cloudfoam-pure-slip-on-j-white-acid-red-gy6589', 'stadiumGoods': ''}" +29aa1526-0987-4f03-935d-69292ccbc96d,GZ7211,adidas,adidas Ultra Boost 22 Solar Yellow Victory Blue (W),Cloud White/Solar Yellow/Victory Blue,women,UltraBoost 22,2022,2022-03-16,190,260,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/894/337/original/GZ7211.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/894/337/original/GZ7211.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/894/337/original/GZ7211.png.png'}","{'stockX': 'https://stockx.com/adidas-ultra-boost-22-solar-yellow-victory-blue-w', 'goat': 'https://goat.com/sneakers/wmns-ultraboost-22-white-solar-yellow-blue-gz7211', 'flightClub': 'https://flightclub.com/wmns-ultraboost-22-white-solar-yellow-blue-gz7211', 'stadiumGoods': ''}" +3117755d-d396-4635-b4d7-52739b61b7ce,1041A326-960,ASICS,Gel Game 8 'White Lake Drive',White/Lake Drive,men,Gel Game 8,2022,2022-03-16,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/909/original/1041A326_960.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/909/original/1041A326_960.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/909/original/1041A326_960.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-game-8-white-lake-drive-1041a326-960', 'flightClub': 'https://flightclub.com/gel-game-8-white-lake-drive-1041a326-960', 'stadiumGoods': ''}" +32b09572-90e4-49ef-8f40-68fcc0dd0d2b,GW7443,adidas,X Speedflow+ FG J 'Purple Rush Mint Rush',Purple Rush/Silver Metallic/Mint Rush,youth,X Speedflow+,2022,2022-03-16,150,220,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/815/original/GW7443.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/815/original/GW7443.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/815/original/GW7443.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/x-speedflow-fg-j-purple-rush-mint-rush-gw7443', 'flightClub': 'https://flightclub.com/x-speedflow-fg-j-purple-rush-mint-rush-gw7443', 'stadiumGoods': ''}" +32d7c496-c299-49a9-adc4-219dab3a5b98,195635-06,Puma,Court Rider I Jr 'Yellow Glow White',Yellow Glow/White,youth,Court Rider,2022,2022-03-16,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/492/original/195635_06.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/492/original/195635_06.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/492/original/195635_06.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/court-rider-i-jr-yellow-glow-white-195635-06', 'flightClub': 'https://flightclub.com/court-rider-i-jr-yellow-glow-white-195635-06', 'stadiumGoods': ''}" +344da3e0-5175-46f7-b8e4-bfb8b6af3a65,1204A003-020,ASICS,Gel Quantum 9 3 GS 'Pure Silver Yellow',Pure Silver/Black,youth,Gel Quantum 90,2022,2022-03-16,75,75,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/522/original/1204A003_020.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/522/original/1204A003_020.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/522/original/1204A003_020.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-quantum-9-3-gs-pure-silver-yellow-1204a003-020', 'flightClub': 'https://flightclub.com/gel-quantum-9-3-gs-pure-silver-yellow-1204a003-020', 'stadiumGoods': ''}" +389913d1-db70-4eaf-9990-57e65715f061,GW8126,adidas,Ozelia J 'White Grey',Cloud White/Supplier Colour/Grey One,youth,Ozelia,2022,2022-03-16,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/820/original/GW8126.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/820/original/GW8126.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/820/original/GW8126.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ozelia-j-white-grey-gw8126', 'flightClub': 'https://flightclub.com/ozelia-j-white-grey-gw8126', 'stadiumGoods': ''}" +3d66f84e-dbbf-4462-9c09-5a2761ce815a,MTHIERH6,New Balance,Fresh Foam Hierro v6 GTX 'Harvest Gold',Harvest Gold/Dark Workwear/Dynomite,men,Fresh Foam Hierro,2022,2022-03-16,160,185,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/408/006/original/MTHIERH6.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/408/006/original/MTHIERH6.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/408/006/original/MTHIERH6.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-hierro-v6-gtx-harvest-gold-mthierh6', 'flightClub': 'https://flightclub.com/fresh-foam-hierro-v6-gtx-harvest-gold-mthierh6', 'stadiumGoods': ''}" +3eafa0d8-3020-438b-b8f6-fe45d0908f1b,MARISMG3,New Balance,Fresh Foam Arishi v3 'Magnet Phantom',Magnet/Phantom/Harvest Gold,men,Fresh Foam Arishi,2022,2022-03-16,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/662/original/MARISMG3.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/662/original/MARISMG3.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/662/original/MARISMG3.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-arishi-v3-magnet-phantom-marismg3', 'flightClub': 'https://flightclub.com/fresh-foam-arishi-v3-magnet-phantom-marismg3', 'stadiumGoods': ''}" +3ef81393-64f6-4c07-b199-23484d2469bc,GW7440,adidas,X Speedflow+ FG 'Purple Rush Mint Rush',Purple Rush/Silver Metallic/Mint Rush,men,X Speedflow+,2022,2022-03-16,275,345,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/814/original/GW7440.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/814/original/GW7440.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/814/original/GW7440.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/x-speedflow-fg-purple-rush-mint-rush-gw7440', 'flightClub': 'https://flightclub.com/x-speedflow-fg-purple-rush-mint-rush-gw7440', 'stadiumGoods': ''}" +4af0f47d-dd7f-4263-aa5b-ed2877a3cbfa,SPFUSEK3,New Balance,Wmns FuelCell Fuse v3 Molded 'Black White',Black/White,women,FuelCell Fuse,2022,2022-03-16,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/678/original/SPFUSEK3.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/678/original/SPFUSEK3.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/678/original/SPFUSEK3.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-fuelcell-fuse-v3-molded-black-white-spfusek3', 'flightClub': 'https://flightclub.com/wmns-fuelcell-fuse-v3-molded-black-white-spfusek3', 'stadiumGoods': ''}" +4dd92f67-7943-470a-aacf-04038954f7fd,384495-01,Puma,SmileyWorld x Leadcat 2.0 Slide Little Kid 'White Black',White/Black/High Risk Red/Royal Blue,youth,Leadcat Slide,2022,2022-03-16,30,30,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/536/original/384495_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/536/original/384495_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/536/original/384495_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/smileyworld-x-leadcat-2-0-slide-little-kid-white-black-384495-01', 'flightClub': 'https://flightclub.com/smileyworld-x-leadcat-2-0-slide-little-kid-white-black-384495-01', 'stadiumGoods': ''}" +4ec29821-3a49-4621-81f8-f73518a8863c,1012A911-001,ASICS,Wmns Gel Contend 7 'Black Carrier Grey',Black/Carrier Grey,women,Gel Contend,2022,2022-03-16,65,130,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-contend-7-black-carrier-grey-1012a911-001', 'flightClub': 'https://flightclub.com/wmns-gel-contend-7-black-carrier-grey-1012a911-001', 'stadiumGoods': ''}" +51a0d06d-4576-4fe6-bd01-5acbe5505f00,1012A911-407,ASICS,Wmns Gel Contend 7 'French Blue',French Blue/Fresh Ice,women,Gel Contend,2022,2022-03-16,65,130,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-contend-7-french-blue-1012a911-407', 'flightClub': 'https://flightclub.com/wmns-gel-contend-7-french-blue-1012a911-407', 'stadiumGoods': ''}" +5e6bdbd2-1ed8-4eff-89ed-e5898e249b99,DJ6569-100,Nike,Air Zoom Victory Tour 2 'White Black',White/White/Black,men,Air Zoom Victory Tour,2022,2022-03-16,180,258,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/969/original/DJ6569_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/969/original/DJ6569_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/969/original/DJ6569_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-zoom-victory-tour-2-white-black-dj6569-100', 'flightClub': 'https://flightclub.com/air-zoom-victory-tour-2-white-black-dj6569-100', 'stadiumGoods': ''}" +619a2034-32ce-41ed-8a27-8b44da604659,GX1648,Reebok,Reebok Ghost Smasher Ghostbusters,Footwear White/Pure Grey 8/Scarlet,men,Ghost Smashers,2022,2022-03-16,200,192,"The Reebok Ghost Smashers ‘Ecto-1 Vibes’ celebrates the release of ‘Ghostbusters: Afterlife,’ the fourth film in the supernatural comedy franchise. While the silhouette is modeled after the Reebok Alien Stomper — featuring an aged white leather upper with dual strap closure — design details are borrowed from the Ghostbusters films, including a red stripe inspired by the Ecto-1 and a removable proton-pack heel piece that glows in the dark. The Ghostbusters’ iconic logo decorates the insole and exposed foam tongue. Anchoring the mid-top is a pre-distressed white rubber midsole.","{'360': ['https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img01.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img02.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img03.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img04.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img05.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img06.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img07.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img08.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img09.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img10.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img11.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img12.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img13.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img14.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img15.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img16.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img17.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img18.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img19.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img20.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img21.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img22.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img23.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img24.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img25.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img26.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img27.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img28.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img29.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img30.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img31.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img32.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img33.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img34.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img35.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767', 'https://images.stockx.com/360/Reebok-Ghost-Smasher-Ghostbusters/Images/Reebok-Ghost-Smasher-Ghostbusters/Lv2/img36.jpg?auto=format,compress&w=559&q=90&dpr=2&updated_at=1648077767'], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/334/395/original/913259_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/334/395/original/913259_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/334/395/original/913259_00.png.png'}","{'stockX': 'https://stockx.com/reebok-ghost-smasher-ghostbusters', 'goat': 'https://goat.com/sneakers/ghostbusters-x-ghost-smashers-ecto-1-vibes-2022-gx1648', 'flightClub': 'https://flightclub.com/ghostbusters-x-ghost-smashers-ecto-1-vibes-2022-gx1648', 'stadiumGoods': ''}" +642ea627-c16e-48d7-bdde-e4a04b2c565a,CW997HLV,New Balance,Wmns 997H 'Pink Haze Vintage Rose',Pink Haze/Vintage Rose,women,997H,2022,2022-03-16,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/601/original/CW997HLV.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/601/original/CW997HLV.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/601/original/CW997HLV.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-997h-pink-haze-vintage-rose-cw997hlv', 'flightClub': 'https://flightclub.com/wmns-997h-pink-haze-vintage-rose-cw997hlv', 'stadiumGoods': ''}" +65ada11b-a20d-44ac-a57d-42a5e1bdc288,GW2275,adidas,Predator Edge.3 FG 'UEFA Champions League',Team College Purple/Silver Metallic/Team Shock Pink 2,men,Predator Edge.3,2022,2022-03-16,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/810/original/GW2275.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/810/original/GW2275.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/810/original/GW2275.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/predator-edge-3-fg-uefa-champions-league-gw2275', 'flightClub': 'https://flightclub.com/predator-edge-3-fg-uefa-champions-league-gw2275', 'stadiumGoods': ''}" +68635579-f4c2-4536-8eb8-caba34243571,SPFUSEW3-D,New Balance,Wmns FuelCell Fuse v3 Molded Wide 'White',White,women,FuelCell Fuse,2022,2022-03-16,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/733/original/SPFUSEW3_D.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/733/original/SPFUSEW3_D.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/733/original/SPFUSEW3_D.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-fuelcell-fuse-v3-molded-wide-white-spfusew3-d', 'flightClub': 'https://flightclub.com/wmns-fuelcell-fuse-v3-molded-wide-white-spfusew3-d', 'stadiumGoods': ''}" +6a9fdd4d-eee6-45a5-9b47-3460bf884eaa,GX2745,Reebok,Wmns Floatride Energy 3 Adventure 'Quartz Glow Army Green',Quartz Glow/Army Green/Core Black,women,Floatride,2022,2022-03-16,120,190,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/823/original/GX2745.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/823/original/GX2745.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/823/original/GX2745.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-floatride-energy-3-adventure-quartz-glow-army-green-gx2745', 'flightClub': 'https://flightclub.com/wmns-floatride-energy-3-adventure-quartz-glow-army-green-gx2745', 'stadiumGoods': ''}" +70a1ab1d-42d0-4c58-95ff-31abf8dad31c,MS237GD,New Balance,237v1 'Nimbus Cloud',Nimbus Cloud/White,men,237,2022,2022-03-16,75,105,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/718/original/MS237GD.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/718/original/MS237GD.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/718/original/MS237GD.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/237v1-nimbus-cloud-ms237gd', 'flightClub': 'https://flightclub.com/237v1-nimbus-cloud-ms237gd', 'stadiumGoods': ''}" +7686c6cf-4595-4f58-9dd3-0ee2725f2c91,1202A039-100,ASICS,Wmns Gel Quantum 180 'Triple White',White/White,women,Gel Quantum 180,2022,2022-03-16,120,190,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-quantum-180-triple-white-1202a039-100', 'flightClub': 'https://flightclub.com/wmns-gel-quantum-180-triple-white-1202a039-100', 'stadiumGoods': ''}" +76c71f6a-db73-4851-be5b-987ee14565be,GV7381,adidas,Predator Edge+ Low FG 'UEFA Champions League',Team College Purple/Silver Metallic/Team Shock Pink,men,Predator Edge+,2022,2022-03-16,275,339,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/807/original/GV7381.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/807/original/GV7381.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/807/original/GV7381.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/predator-edge-low-fg-uefa-champions-league-gv7381', 'flightClub': 'https://flightclub.com/predator-edge-low-fg-uefa-champions-league-gv7381', 'stadiumGoods': ''}" +792e5194-24ae-4916-b7aa-424e5cf9aa81,M860B12-2E,New Balance,Fresh Foam X 860v12 2E Wide 'Oxygen Blue',Oxygen Blue/Helium,men,860,2022,2022-03-16,135,205,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/998/original/M860B12_2E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/998/original/M860B12_2E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/998/original/M860B12_2E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-x-860v12-2e-wide-oxygen-blue-m860b12-2e', 'flightClub': 'https://flightclub.com/fresh-foam-x-860v12-2e-wide-oxygen-blue-m860b12-2e', 'stadiumGoods': ''}" +79c1e93f-3ba7-436b-ad36-945fd1e34182,1041A192-400,ASICS,Gel Game 8 'French Blue',French Blue/Pure Silver,men,Gel Game 8,2022,2022-03-16,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/502/original/1041A192_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/502/original/1041A192_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/502/original/1041A192_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-game-8-french-blue-1041a192-400', 'flightClub': 'https://flightclub.com/gel-game-8-french-blue-1041a192-400', 'stadiumGoods': ''}" +8273c8b3-6b3a-4af9-ac0d-eea376b88930,GW4946,adidas,Copa Sense.1 FG 'UEFA Champions League',Team College Purple/Silver Metallic/Mint Rush,men,Copa Sense.1,2022,2022-03-16,225,295,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/813/original/GW4946.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/813/original/GW4946.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/813/original/GW4946.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/copa-sense-1-fg-uefa-champions-league-gw4946', 'flightClub': 'https://flightclub.com/copa-sense-1-fg-uefa-champions-league-gw4946', 'stadiumGoods': ''}" +90840710-77cf-4e1c-b6a9-57baf6a4559d,1011B040-009,ASICS,Gel Contend 7 'Black Pure Silver',Black/Pure Silver,men,Gel Contend,2022,2022-03-16,65,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/895/original/1011B040_009.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/895/original/1011B040_009.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/895/original/1011B040_009.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-contend-7-black-pure-silver-1011b040-009', 'flightClub': 'https://flightclub.com/gel-contend-7-black-pure-silver-1011b040-009', 'stadiumGoods': ''}" +9a872466-5dd9-4f46-aa4b-3e8f4df91bec,MARISMN3,New Balance,Fresh Foam Arishi v3 'Natural Indigo',Natural Indigo/Vintage Indigo/Angora,men,Fresh Foam Arishi,2022,2022-03-16,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/665/original/MARISMN3.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/665/original/MARISMN3.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/665/original/MARISMN3.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-arishi-v3-natural-indigo-marismn3', 'flightClub': 'https://flightclub.com/fresh-foam-arishi-v3-natural-indigo-marismn3', 'stadiumGoods': ''}" +9d83506a-0fdf-44d6-8b28-b0d19076331e,GX5212,adidas,Predator Edge.3 FG J 'UEFA Champions League',Team College Purple/Silver Metallic/Team Shock Pink,youth,Predator Edge.3,2022,2022-03-16,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/662/original/GX5212.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/662/original/GX5212.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/662/original/GX5212.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/predator-edge-3-fg-j-uefa-champions-league-gx5212', 'flightClub': 'https://flightclub.com/predator-edge-3-fg-j-uefa-champions-league-gx5212', 'stadiumGoods': ''}" +9f1148b5-8658-44ca-9c4b-36102a13b715,M860B12-B,New Balance,Fresh Foam X 860v12 B Wide 'Oxygen Blue',Oxygen Blue/Helium,men,860,2022,2022-03-16,135,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/408/000/original/M860B12_B.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/408/000/original/M860B12_B.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/408/000/original/M860B12_B.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-x-860v12-b-wide-oxygen-blue-m860b12-b', 'flightClub': 'https://flightclub.com/fresh-foam-x-860v12-b-wide-oxygen-blue-m860b12-b', 'stadiumGoods': ''}" +a202af5b-8dc1-4787-ab96-e6752e9d20a8,1042A152-105,ASICS,Wmns Gel Game 8 'White Light Indigo',White/Light Indigo,women,Gel Game 8,2022,2022-03-16,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/914/original/1042A152_105.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/914/original/1042A152_105.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/914/original/1042A152_105.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-game-8-white-light-indigo-1042a152-105', 'flightClub': 'https://flightclub.com/wmns-gel-game-8-white-light-indigo-1042a152-105', 'stadiumGoods': ''}" +a25f0efa-b295-4574-81d8-e2386b86af8e,1201A242-100,ASICS,Gel Jog MC 'White Black',White/Black,men,Gel Jog,2022,2022-03-16,75,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/928/original/1201A242_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/928/original/1201A242_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/928/original/1201A242_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-jog-mc-white-black-1201a242-100', 'flightClub': 'https://flightclub.com/gel-jog-mc-white-black-1201a242-100', 'stadiumGoods': ''}" +a355faf3-fa1b-4ba6-8ccb-71149cade4ae,MARISMG3-2E,New Balance,Fresh Foam Arishi v3 2E Wide 'Magnet Phantom',Magnet/Phantom/Harvest Gold,men,Fresh Foam Arishi,2022,2022-03-16,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/704/original/MARISMG3_2E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/704/original/MARISMG3_2E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/704/original/MARISMG3_2E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-arishi-v3-2e-wide-magnet-phantom-marismg3-2e', 'flightClub': 'https://flightclub.com/fresh-foam-arishi-v3-2e-wide-magnet-phantom-marismg3-2e', 'stadiumGoods': ''}" +ab62953d-0aa7-42f4-a5b1-1682336192d0,M860B12-4E,New Balance,Fresh Foam X 860v12 4E Wide 'Oxygen Blue',Oxygen Blue/Helium,men,860,2022,2022-03-16,135,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/999/original/M860B12_4E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/999/original/M860B12_4E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/999/original/M860B12_4E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-x-860v12-4e-wide-oxygen-blue-m860b12-4e', 'flightClub': 'https://flightclub.com/fresh-foam-x-860v12-4e-wide-oxygen-blue-m860b12-4e', 'stadiumGoods': ''}" +abb27a2a-6a04-4d58-b049-147638fd7b5e,1014A209-703,ASICS,Gel Noosa Tri 13 GS 'Color Injection Pack - Pink Glow Sour Yuzu',Pink Glow/Sour Yuzu,youth,Gel Noosa,2022,2022-03-16,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/904/original/1014A209_703.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/904/original/1014A209_703.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/904/original/1014A209_703.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-noosa-tri-13-gs-color-injection-pack-pink-glow-sour-yuzu-1014a209-703', 'flightClub': 'https://flightclub.com/gel-noosa-tri-13-gs-color-injection-pack-pink-glow-sour-yuzu-1014a209-703', 'stadiumGoods': ''}" +acc2f805-bc63-4d2a-a9b4-a3c93d966802,M860B12,New Balance,Fresh Foam X 860v12 'Oxygen Blue',Oxygen Blue/Helium,men,860,2022,2022-03-16,135,205,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/838/original/M860B12.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/838/original/M860B12.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/838/original/M860B12.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-x-860v12-oxygen-blue-m860b12', 'flightClub': 'https://flightclub.com/fresh-foam-x-860v12-oxygen-blue-m860b12', 'stadiumGoods': ''}" +ae75e272-c389-454a-88e7-1bd4fc8676b9,CM997HSJ,New Balance,997H 'Olive Leaf Sunflower',Olive Leaf/Sunflower,men,997,2022,2022-03-16,90,129,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/590/original/CM997HSJ.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/590/original/CM997HSJ.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/590/original/CM997HSJ.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/997h-olive-leaf-sunflower-cm997hsj', 'flightClub': 'https://flightclub.com/997h-olive-leaf-sunflower-cm997hsj', 'stadiumGoods': ''}" +ae84e201-7754-44f5-84aa-a49883161960,MARISMN3-2E,New Balance,Fresh Foam Arishi v3 2E Wide 'Natural Indigo',Natural Indigo/Vintage Indigo/Angora,men,Fresh Foam Arishi,2022,2022-03-16,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/709/original/MARISMN3_2E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/709/original/MARISMN3_2E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/709/original/MARISMN3_2E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-arishi-v3-2e-wide-natural-indigo-marismn3-2e', 'flightClub': 'https://flightclub.com/fresh-foam-arishi-v3-2e-wide-natural-indigo-marismn3-2e', 'stadiumGoods': ''}" +b1dadacb-b1fb-4d26-8292-810947af55a5,SPFUSEK3-D,New Balance,Wmns FuelCell Fuse v3 Molded Wide 'Black White',Black/White,women,FuelCell Fuse,2022,2022-03-16,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/731/original/SPFUSEK3_D.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/731/original/SPFUSEK3_D.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/731/original/SPFUSEK3_D.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-fuelcell-fuse-v3-molded-wide-black-white-spfusek3-d', 'flightClub': 'https://flightclub.com/wmns-fuelcell-fuse-v3-molded-wide-black-white-spfusek3-d', 'stadiumGoods': ''}" +b5660714-65c5-45d8-bd03-a7756a2ddb28,GW7482,adidas,X Speedflow.3 FG 'Purple Rush Mint Rush',Purple Rush/Silver Metallic/Mint Rush,men,X Speedflow.3,2022,2022-03-16,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/818/original/GW7482.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/818/original/GW7482.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/818/original/GW7482.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/x-speedflow-3-fg-purple-rush-mint-rush-gw7482', 'flightClub': 'https://flightclub.com/x-speedflow-3-fg-purple-rush-mint-rush-gw7482', 'stadiumGoods': ''}" +b5ba9f51-8b45-4855-94f1-406ba9cd8f5a,GY5233,Reebok,ZigWild Trail 6 'Black Batik Blue',Core Black/Batik Blue/Court Blue,men,ZigWild,2022,2022-03-16,110,180,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/828/original/GY5233.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/828/original/GY5233.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/828/original/GY5233.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zigwild-trail-6-black-batik-blue-gy5233', 'flightClub': 'https://flightclub.com/zigwild-trail-6-black-batik-blue-gy5233', 'stadiumGoods': ''}" +b868e036-5911-4e5e-a63a-6974cdf98932,GV7701,adidas,ZX 5000 'Grey Screaming Green',Grey Three/Core Black/Screaming Green,men,ZX 5000,2022,2022-03-16,160,230,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/809/original/GV7701.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/809/original/GV7701.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/809/original/GV7701.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zx-5000-grey-screaming-green-gv7701', 'flightClub': 'https://flightclub.com/zx-5000-grey-screaming-green-gv7701', 'stadiumGoods': ''}" +bee5f66b-fb07-4e24-928b-90c133cdb6cc,A00461C,Converse,Converse Chuck Taylor All-Star 70 Ox Brown Mineral Clay,Brown/Mineral Clay/Egret/Black,men,Converse Chuck Taylor All-Star 70 Ox,2022,2022-03-16,80,85,,"{'360': [], 'original': 'https://images.stockx.com/images/Converse-Chuck-Taylor-All-Star-70-Ox-Brown-Mineral-Clay.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1649122189', 'small': 'https://images.stockx.com/images/Converse-Chuck-Taylor-All-Star-70-Ox-Brown-Mineral-Clay.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1649122189', 'thumbnail': 'https://images.stockx.com/images/Converse-Chuck-Taylor-All-Star-70-Ox-Brown-Mineral-Clay.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1649122189'}","{'stockX': 'https://stockx.com/converse-chuck-taylor-all-star-70-ox-brown-mineral-clay', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +c3ade7de-a9b6-4e40-bd43-a2c612d94d2a,GX5281,Reebok,Endless Road 3 'Black Vector Red',Core Black/Cold Grey 7/Vector Red,men,Endless Road,2022,2022-03-16,80,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/825/original/GX5281.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/825/original/GX5281.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/825/original/GX5281.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/endless-road-3-black-vector-red-gx5281', 'flightClub': 'https://flightclub.com/endless-road-3-black-vector-red-gx5281', 'stadiumGoods': ''}" +cacb081f-1551-4492-a343-c94b48df8da4,CM997HSU,New Balance,997H 'Infinity Blue Eclipse',Infinity Blue/Eclipse,men,997,2022,2022-03-16,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/658/591/original/CM997HSU.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/658/591/original/CM997HSU.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/658/591/original/CM997HSU.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/997h-infinity-blue-eclipse-cm997hsu', 'flightClub': 'https://flightclub.com/997h-infinity-blue-eclipse-cm997hsu', 'stadiumGoods': ''}" +ce766a79-30c9-464e-9e70-7a436569a530,DB2179-105,Nike,Dunk High GS 'Cargo Khaki',White/Cargo Khaki,youth,Dunk,2022,2022-03-16,90,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/064/333/902/original/853331_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/064/333/902/original/853331_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/064/333/902/original/853331_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/dunk-high-gs-cargo-khaki-db2179-105', 'flightClub': 'https://flightclub.com/dunk-high-gs-cargo-khaki-db2179-105', 'stadiumGoods': ''}" +d31fc662-2c53-44d8-9f47-7ce0ca113739,SPFUSEW3,New Balance,Wmns FuelCell Fuse v3 Molded 'White',White,women,FuelCell Fuse,2022,2022-03-16,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/680/original/SPFUSEW3.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/680/original/SPFUSEW3.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/680/original/SPFUSEW3.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-fuelcell-fuse-v3-molded-white-spfusew3', 'flightClub': 'https://flightclub.com/wmns-fuelcell-fuse-v3-molded-white-spfusew3', 'stadiumGoods': ''}" +e4757bfc-02ed-4b34-ab7d-1d12654a19cd,CW997HCW,New Balance,Wmns 997H 'White Pink Haze',White/Pink Haze,women,997H,2022,2022-03-16,90,175,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/587/original/CW997HCW.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/587/original/CW997HCW.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/587/original/CW997HCW.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-997h-white-pink-haze-cw997hcw', 'flightClub': 'https://flightclub.com/wmns-997h-white-pink-haze-cw997hcw', 'stadiumGoods': ''}" +e51713dd-c108-4155-a7d8-03e34f6a1961,GW4937,adidas,Copa Sense+ FG 'UEFA Champions League',Team College Purple/Silver Metallic/Mint Rush,men,Copa Sense+,2022,2022-03-16,275,345,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/812/original/GW4937.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/812/original/GW4937.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/812/original/GW4937.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/copa-sense-fg-uefa-champions-league-gw4937', 'flightClub': 'https://flightclub.com/copa-sense-fg-uefa-champions-league-gw4937', 'stadiumGoods': ''}" +e66e8425-d487-47a7-9ba3-329e86dd6c91,GY0420,Reebok,Classic Leather Legacy AZ 'Army Green Rhodonite',Army Green/Rhodonite/Core Black,men,Reebok Classic Legacy,2022,2022-03-16,85,165,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/827/original/GY0420.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/827/original/GY0420.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/827/original/GY0420.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-leather-legacy-az-army-green-rhodonite-gy0420', 'flightClub': 'https://flightclub.com/classic-leather-legacy-az-army-green-rhodonite-gy0420', 'stadiumGoods': ''}" +e747b244-667d-412c-ba3f-beb94972a669,DM1297-100,Nike,Nike Air More Uptempo 96 Trading Cards Primary Colors,Sail/Black/Sail-Team Orange,men,Air More Uptempo,2022,2022-03-16,160,151,"The Nike Air More Uptempo ‘96 ‘Primary Colors’ brings back the retro hoops shoe made famous by Scottie Pippen, who wore the kicks during the Bulls’ legendary 72-10 season. Inspired by vintage basketball trading cards, this pair features oversized ‘AIR’ branding in black leather, with each letter outlined in contrasting yellow, blue, and crimson trim. The rest of the upper is constructed from white leather with a large jeweled Swoosh on the heel overlay. The sneaker rides on a lightweight Phylon midsole with visible Air-sole cushioning.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/690/456/original/881977_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/690/456/original/881977_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/690/456/original/881977_00.png.png'}","{'stockX': 'https://stockx.com/nike-air-more-uptempo-96-trading-cards-primary-colors', 'goat': 'https://goat.com/sneakers/air-more-uptempo-96-primary-colors-dm1297-100', 'flightClub': 'https://flightclub.com/air-more-uptempo-96-primary-colors-dm1297-100', 'stadiumGoods': ''}" +f3f3008e-c7d6-482e-8538-56c8b60e94c2,MARISMN3-4E,New Balance,Fresh Foam Arishi v3 4E Wide 'Natural Indigo',Natural Indigo/Vintage Indigo/Angora,men,Fresh Foam Arishi,2022,2022-03-16,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/710/original/MARISMN3_4E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/710/original/MARISMN3_4E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/710/original/MARISMN3_4E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-arishi-v3-4e-wide-natural-indigo-marismn3-4e', 'flightClub': 'https://flightclub.com/fresh-foam-arishi-v3-4e-wide-natural-indigo-marismn3-4e', 'stadiumGoods': ''}" +f46c57ef-6ca7-4b3f-affa-103302641e21,MARISMG3-4E,New Balance,Fresh Foam Arishi v3 4E Wide 'Magnet Phantom',Magnet/Phantom/Harvest Gold,men,Fresh Foam Arishi,2022,2022-03-16,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/706/original/MARISMG3_4E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/706/original/MARISMG3_4E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/706/original/MARISMG3_4E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-arishi-v3-4e-wide-magnet-phantom-marismg3-4e', 'flightClub': 'https://flightclub.com/fresh-foam-arishi-v3-4e-wide-magnet-phantom-marismg3-4e', 'stadiumGoods': ''}" +f6fdce5f-4cd6-4d17-b7ce-2e927c53c1f9,H02934,adidas,Predator Edge.1 FG 'Team College Purple',Team College Purple/Silver Metallic/Team Shock Pink,men,Predator Edge.1,2022,2022-03-16,250,320,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/834/original/H02934.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/834/original/H02934.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/834/original/H02934.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/predator-edge-1-fg-team-college-purple-h02934', 'flightClub': 'https://flightclub.com/predator-edge-1-fg-team-college-purple-h02934', 'stadiumGoods': ''}" +f89473f4-3839-4386-ae39-c1822da56b80,NM1010GM,New Balance,New Balance Numeric 1010 Khaki,Khaki/Tan/White,men,Numeric 1010,2022,2022-03-16,110,124,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/674/original/NM1010GM.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/674/original/NM1010GM.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/674/original/NM1010GM.png.png'}","{'stockX': 'https://stockx.com/new-balance-numeric-1010-khaki', 'goat': 'https://goat.com/sneakers/tiago-lemos-x-numeric-1010-grey-yellow-nm1010gm', 'flightClub': 'https://flightclub.com/tiago-lemos-x-numeric-1010-grey-yellow-nm1010gm', 'stadiumGoods': ''}" +f9f5efdd-26a5-4d30-bfca-5d1244db8b60,CT2392-005,Nike,Zoom Fly 4 'Wolf Grey Photo Blue',Wolf Grey/Photo Blue/Black/White,men,Zoom Fly 4,2022,2022-03-16,160,240,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/960/original/CT2392_005.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/960/original/CT2392_005.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/960/original/CT2392_005.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zoom-fly-4-wolf-grey-photo-blue-ct2392-005', 'flightClub': 'https://flightclub.com/zoom-fly-4-wolf-grey-photo-blue-ct2392-005', 'stadiumGoods': ''}" +fe3c3103-3213-4020-808f-8b2507496c23,MTHIERH6-2E,New Balance,Fresh Foam Hierro v6 GTX 2E Wide 'Harvest Gold',Harvest Gold/Dark Workwear/Dynomite,men,Fresh Foam Hierro,2022,2022-03-16,160,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/408/004/original/MTHIERH6_2E.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/408/004/original/MTHIERH6_2E.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/408/004/original/MTHIERH6_2E.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/fresh-foam-hierro-v6-gtx-2e-wide-harvest-gold-mthierh6-2e', 'flightClub': 'https://flightclub.com/fresh-foam-hierro-v6-gtx-2e-wide-harvest-gold-mthierh6-2e', 'stadiumGoods': ''}" +0997cd6c-6f1f-4f2c-8795-30d96bf45b9d,GZ4307,adidas,adidas NMD R1 White Speckled Camo Sole,Cloud White/Cloud White/Core Black,men,NMD Runner,2022,2022-03-15,150,157,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/394/original/GZ4307.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/394/original/GZ4307.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/394/original/GZ4307.png.png'}","{'stockX': 'https://stockx.com/adidas-nmd-r1-white-speckled-camo-sole', 'goat': 'https://goat.com/sneakers/nmd_r1-color-splash-cloud-white-gz4307', 'flightClub': 'https://flightclub.com/nmd_r1-color-splash-cloud-white-gz4307', 'stadiumGoods': ''}" +0bcdd5c1-97e0-430b-a202-ac2249a3d4d5,1201A063-029,ASICS,ASICS Gel-Quantum 180 Graphite Grey Marigold Orange,Graphite Grey/Marigold Orange,men,Gel Quantum 180,2022,2022-03-15,120,118,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/925/original/1201A063_029.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/925/original/1201A063_029.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/925/original/1201A063_029.png.png'}","{'stockX': 'https://stockx.com/asics-gel-quantum-180-graphite-grey-marigold-orange', 'goat': 'https://goat.com/sneakers/gel-quantum-180-graphite-grey-marigold-orange-1201a063-029', 'flightClub': 'https://flightclub.com/gel-quantum-180-graphite-grey-marigold-orange-1201a063-029', 'stadiumGoods': ''}" +0c716a5b-831c-4134-af8b-26706e0abd45,GZ6842,adidas,Freak Spark J 'Black Night Metallic',Core Black/Night Metallic/Core Black,youth,Freak,2022,2022-03-15,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/135/original/GZ6842.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/135/original/GZ6842.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/135/original/GZ6842.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-spark-j-black-night-metallic-gz6842', 'flightClub': 'https://flightclub.com/freak-spark-j-black-night-metallic-gz6842', 'stadiumGoods': ''}" +0e248471-5b4d-4250-836a-c01e14e138dc,1201A063-102,ASICS,ASICS Gel-Quantum 180 White Pure Silver Blue Red,White/Pure Silver,men,Gel Quantum 180,2022,2022-03-15,120,185,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/696/original/1201A063_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/696/original/1201A063_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/696/original/1201A063_102.png.png'}","{'stockX': 'https://stockx.com/asics-gel-quantum-180-white-pure-silver-blue-red', 'goat': 'https://goat.com/sneakers/gel-quantum-180-white-pure-silver-1201a063-102', 'flightClub': 'https://flightclub.com/gel-quantum-180-white-pure-silver-1201a063-102', 'stadiumGoods': ''}" +1351124b-1862-4407-ba2a-8652b66712aa,1014A209-702,ASICS,Gel Noosa Tri 13 GS 'Color Injection Pack - Illuminate Yellow',Illuminate Yellow/Illuminate Yellow,youth,Gel Noosa,2022,2022-03-15,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/902/original/1014A209_702.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/902/original/1014A209_702.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/902/original/1014A209_702.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-noosa-tri-13-gs-color-injection-pack-illuminate-yellow-1014a209-702', 'flightClub': 'https://flightclub.com/gel-noosa-tri-13-gs-color-injection-pack-illuminate-yellow-1014a209-702', 'stadiumGoods': ''}" +14eafc33-8a9b-4f3c-87d4-852a6de0bdf5,GX7980,adidas,Freak Ultra 22 'Royal Blue',Royal Blue/Cloud White/Royal Blue,men,Freak Ultra,2022,2022-03-15,180,250,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/120/original/GX7980.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/120/original/GX7980.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/120/original/GX7980.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-ultra-22-royal-blue-gx7980', 'flightClub': 'https://flightclub.com/freak-ultra-22-royal-blue-gx7980', 'stadiumGoods': ''}" +157a1f58-7fff-48e9-816a-5f7b3b966fc2,1012A911-023,ASICS,Wmns Gel Contend 7 'Graphite Grey',Graphite Grey/Digital Aqua,women,Gel Contend,2022,2022-03-15,65,130,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-contend-7-graphite-grey-1012a911-023', 'flightClub': 'https://flightclub.com/wmns-gel-contend-7-graphite-grey-1012a911-023', 'stadiumGoods': ''}" +16e61c72-7579-4174-abd1-287dd711cfaa,1014A209-300,ASICS,Gel Noosa Tri 13 GS 'Color Injection Pack - Hazard Green',Hazard Green/Hazard Green,youth,Gel Noosa,2022,2022-03-15,65,135,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/498/original/1014A209_300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/498/original/1014A209_300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/498/original/1014A209_300.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-noosa-tri-13-gs-color-injection-pack-hazard-green-1014a209-300', 'flightClub': 'https://flightclub.com/gel-noosa-tri-13-gs-color-injection-pack-hazard-green-1014a209-300', 'stadiumGoods': ''}" +18f23296-84b8-4f38-959e-51c5f045a593,1012A911-101,ASICS,Wmns Gel Contend 7 'White Digital Grape',White/Digital Grape,women,Gel Contend,2022,2022-03-15,65,65,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-contend-7-white-digital-grape-1012a911-101', 'flightClub': 'https://flightclub.com/wmns-gel-contend-7-white-digital-grape-1012a911-101', 'stadiumGoods': ''}" +1a419ecf-d918-41d3-99ff-985a7283ba31,1012A911-960,ASICS,Wmns Gel Contend 7 'White Clear Blue',White/Clear Blue,women,Gel Contend,2022,2022-03-15,65,117,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-contend-7-white-clear-blue-1012a911-960', 'flightClub': 'https://flightclub.com/wmns-gel-contend-7-white-clear-blue-1012a911-960', 'stadiumGoods': ''}" +1bb9bbae-149b-4dfb-950a-e7b9d36d49fe,GZ9268,adidas,adidas NMD TR Black Cream Solar Red,Core Black/Core Black/Cream White,men,NMD Runner,2022,2022-03-15,150,105,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/403/original/GZ9268.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/403/original/GZ9268.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/403/original/GZ9268.png.png'}","{'stockX': 'https://stockx.com/adidas-nmd-tr-black-cream-solar-red', 'goat': 'https://goat.com/sneakers/nmd_r1-black-cream-white-gz9268', 'flightClub': 'https://flightclub.com/nmd_r1-black-cream-white-gz9268', 'stadiumGoods': ''}" +1fc87c2a-0960-4423-8911-4b5c2d90a967,GW3372,adidas,Freak Spark J 'Team Power Red',Team Power Red 2/Cloud White/Team Power Red 2,youth,Freak,2022,2022-03-15,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/101/original/GW3372.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/101/original/GW3372.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/101/original/GW3372.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-spark-j-team-power-red-gw3372', 'flightClub': 'https://flightclub.com/freak-spark-j-team-power-red-gw3372', 'stadiumGoods': ''}" +27de7d3b-046e-4bcf-9f03-7fa286cd81f4,1011B175-403,ASICS,Gel Pulse 13 'French Blue Orange',French Blue/Shocking Orange,men,Gel Pulse,2022,2022-03-15,90,160,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-pulse-13-french-blue-orange-1011b175-403', 'flightClub': 'https://flightclub.com/gel-pulse-13-french-blue-orange-1011b175-403', 'stadiumGoods': ''}" +2984fc83-c303-4bd2-bd0f-aadf61d06e47,BBW550WP,New Balance,New Balance 550 White Pink (W),White/Pink,women,550,2022,2022-03-15,110,270,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/580/original/BBW550WP.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/580/original/BBW550WP.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/580/original/BBW550WP.png.png'}","{'stockX': 'https://stockx.com/new-balance-550-white-pink-w', 'goat': 'https://goat.com/sneakers/wmns-550-white-pink-bbw550wp', 'flightClub': 'https://flightclub.com/wmns-550-white-pink-bbw550wp', 'stadiumGoods': ''}" +30d9f1e9-7af1-4378-90c8-b3acbd36b6b2,1012A911-406,ASICS,Wmns Gel Contend 7 'Mist Blazing Coral',Mist/Blazing Coral,women,Gel Contend,2022,2022-03-15,65,130,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-contend-7-mist-blazing-coral-1012a911-406', 'flightClub': 'https://flightclub.com/wmns-gel-contend-7-mist-blazing-coral-1012a911-406', 'stadiumGoods': ''}" +3bc9ecc0-1bd2-436e-afd7-6e1cbbea46f6,1052A033-408,ASICS,Wmns Netburner Ballistic FF 2 'Periwinkle Blue',Periwinkle Blue/Pure Silver,women,Netburner Ballistic FF,2022,2022-03-15,115,185,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/508/original/1052A033_408.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/508/original/1052A033_408.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/508/original/1052A033_408.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-netburner-ballistic-ff-2-periwinkle-blue-1052a033-408', 'flightClub': 'https://flightclub.com/wmns-netburner-ballistic-ff-2-periwinkle-blue-1052a033-408', 'stadiumGoods': ''}" +3ce0e788-4bf0-4659-a239-eef62be2cb7f,FY3956,adidas,UltraBoost 21 GTX 'Focus Olive',Focus Olive/Core Black/Acid Yellow,men,UltraBoost 21,2022,2022-03-15,220,194,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/089/original/FY3956.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/089/original/FY3956.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/089/original/FY3956.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultraboost-21-gtx-focus-olive-fy3956', 'flightClub': 'https://flightclub.com/ultraboost-21-gtx-focus-olive-fy3956', 'stadiumGoods': ''}" +3d9a8632-1127-4190-aca8-13cd755b5647,1012A911-401,ASICS,Wmns Gel Contend 7 'French Blue Champagne',French Blue/Champagne,women,Gel Contend,2022,2022-03-15,65,130,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-contend-7-french-blue-champagne-1012a911-401', 'flightClub': 'https://flightclub.com/wmns-gel-contend-7-french-blue-champagne-1012a911-401', 'stadiumGoods': ''}" +403094e8-dac9-43d4-8a54-9363010802c2,GZ6840,adidas,Freak Spark J 'White Silver Metallic',Cloud White/Silver Metallic/Cloud White,youth,Freak,2022,2022-03-15,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/132/original/GZ6840.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/132/original/GZ6840.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/132/original/GZ6840.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-spark-j-white-silver-metallic-gz6840', 'flightClub': 'https://flightclub.com/freak-spark-j-white-silver-metallic-gz6840', 'stadiumGoods': ''}" +40897f40-55cd-4137-8c0d-83d427c4a1e9,1202A318-250,ASICS,Wmns Gel Quantum 90 'Oatmeal Sienna',Oatmeal/Sienna,women,Gel Quantum 90,2022,2022-03-15,85,155,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-quantum-90-oatmeal-sienna-1202a318-250', 'flightClub': 'https://flightclub.com/wmns-gel-quantum-90-oatmeal-sienna-1202a318-250', 'stadiumGoods': ''}" +44d7b6b7-97d8-4d3b-bc4e-c6161d679b28,1012A911-410,ASICS,Wmns Gel Contend 7 'French Blue Barely Rose',French Blue/Barely Rose,women,Gel Contend,2022,2022-03-15,65,130,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-contend-7-french-blue-barely-rose-1012a911-410', 'flightClub': 'https://flightclub.com/wmns-gel-contend-7-french-blue-barely-rose-1012a911-410', 'stadiumGoods': ''}" +45c56689-c221-46bf-8bcf-85dadc9d6402,DH0649-001,Nike,Air Zoom Terra Kiger 8 'Black Anthracite',Black/Anthracite/Wolf Grey/Pure Platinum,men,Air Zoom Terra Kiger,2022,2022-03-15,140,137,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/032/original/DH0649_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/032/original/DH0649_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/032/original/DH0649_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-zoom-terra-kiger-8-black-anthracite-dh0649-001', 'flightClub': 'https://flightclub.com/air-zoom-terra-kiger-8-black-anthracite-dh0649-001', 'stadiumGoods': ''}" +4cc97809-88ca-46f7-862e-b093e398b683,GZ3355,adidas,RapidaZen I 'Black Vivid Red',Core Black/Vivid Red/Carbon,infant,RapidaZen,2022,2022-03-15,50,120,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/130/original/GZ3355.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/130/original/GZ3355.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/130/original/GZ3355.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/rapidazen-i-black-vivid-red-gz3355', 'flightClub': 'https://flightclub.com/rapidazen-i-black-vivid-red-gz3355', 'stadiumGoods': ''}" +4e2af974-c62a-4d50-a8ad-0e619423b1e1,GW3373,adidas,Freak Spark J 'Royal Blue',Royal Blue/Cloud White/Royal Blue,youth,Freak,2022,2022-03-15,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/103/original/GW3373.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/103/original/GW3373.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/103/original/GW3373.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-spark-j-royal-blue-gw3373', 'flightClub': 'https://flightclub.com/freak-spark-j-royal-blue-gw3373', 'stadiumGoods': ''}" +4ff6a1c1-a80e-431b-8836-759f61ba2bd1,GX2977,adidas,4DFWD 'Core Black',Core Black/Core Black/Cloud White,men,4DFWD,2022,2022-03-15,200,269,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/110/original/GX2977.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/110/original/GX2977.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/110/original/GX2977.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/4dfwd-core-black-gx2977', 'flightClub': 'https://flightclub.com/4dfwd-core-black-gx2977', 'stadiumGoods': ''}" +517f2156-ac4e-42ac-9d4d-0a63749717ec,1011A824-003,ASICS,Gel Venture 8 'Black Directoire Blue',Black/Directoire Blue,men,Gel Venture,2022,2022-03-15,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/482/original/1011A824_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/482/original/1011A824_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/482/original/1011A824_003.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-venture-8-black-directoire-blue-1011a824-003', 'flightClub': 'https://flightclub.com/gel-venture-8-black-directoire-blue-1011a824-003', 'stadiumGoods': ''}" +58f03db8-1a85-4797-b402-f549974be896,1203A104-400,ASICS,Gel Quantum 90 SD 'Midnight Glacier Grey',Midnight/Glacier Grey,men,Gel Quantum 90,2022,2022-03-15,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/527/original/1203A104_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/527/original/1203A104_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/527/original/1203A104_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/yes-1203a104-400', 'flightClub': 'https://flightclub.com/yes-1203a104-400', 'stadiumGoods': ''}" +604aae37-1aab-48c7-a278-31bce8f72cea,1011B040-408,ASICS,Gel Contend 7 'Lake Drive Mako Blue',Lake Drive/Mako Blue,men,Gel Contend,2022,2022-03-15,65,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/899/original/1011B040_408.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/899/original/1011B040_408.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/899/original/1011B040_408.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-contend-7-lake-drive-mako-blue-1011b040-408', 'flightClub': 'https://flightclub.com/gel-contend-7-lake-drive-mako-blue-1011b040-408', 'stadiumGoods': ''}" +647c9068-d13f-4484-9a81-63a28b9a7412,ML725I,New Balance,New Balance 725 Ivory,Ivory/White/Yellow,men,725,2022,2022-03-15,100,128,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/237/630/original/ML725I.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/237/630/original/ML725I.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/237/630/original/ML725I.png.png'}","{'stockX': 'https://stockx.com/new-balance-725-ivory', 'goat': 'https://goat.com/sneakers/725v1-arctic-fox-ml725i', 'flightClub': 'https://flightclub.com/725v1-arctic-fox-ml725i', 'stadiumGoods': ''}" +7120df21-54b9-43f7-bf4a-31e1c07ba748,GV7953,adidas,Superstar I 'White Royal Blue',Cloud White/Royal Blue/Cloud White,infant,Superstar,2022,2022-03-15,60,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/098/original/GV7953.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/098/original/GV7953.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/098/original/GV7953.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/superstar-i-white-royal-blue-gv7953', 'flightClub': 'https://flightclub.com/superstar-i-white-royal-blue-gv7953', 'stadiumGoods': ''}" +7244bd42-dd99-433d-99d5-cb57395a216a,DO2421-739,Nike,Zoom Fly 4 'University Gold',University Gold/Amarillo/Magma Orange/Black,men,Zoom Fly 4,2022,2022-03-15,170,128,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/070/334/385/original/914583_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/070/334/385/original/914583_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/070/334/385/original/914583_00.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zoom-fly-4-university-gold-do2421-739', 'flightClub': 'https://flightclub.com/zoom-fly-4-university-gold-do2421-739', 'stadiumGoods': ''}" +727982b1-5aff-4780-8b8d-092cbf1f3c25,1203A204-020,ASICS,Gel PTG 'Oyster Grey',Oyster Grey/Oyster Grey,men,Gel PTG,2022,2022-03-15,130,200,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-ptg-oyster-grey-1203a204-020', 'flightClub': 'https://flightclub.com/gel-ptg-oyster-grey-1203a204-020', 'stadiumGoods': ''}" +72c2f03b-2eda-41a4-b75f-ce8ad55e5f42,FZ2558,adidas,UltraBoost 21 Cold.RDY 'Black Carbon',Core Black/Core Black/Carbon,men,UltraBoost 21,2022,2022-03-15,190,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/093/original/FZ2558.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/093/original/FZ2558.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/093/original/FZ2558.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultraboost-21-cold-rdy-black-carbon-fz2558', 'flightClub': 'https://flightclub.com/ultraboost-21-cold-rdy-black-carbon-fz2558', 'stadiumGoods': ''}" +7bd147c9-0777-4716-978d-51d59bf405d5,1012B035-021,ASICS,Wmns Gel Pulse 13 'Clay Grey',Clay Grey/Clear Blue,women,Gel Pulse,2022,2022-03-15,90,160,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-pulse-13-clay-grey-1012b035-021', 'flightClub': 'https://flightclub.com/wmns-gel-pulse-13-clay-grey-1012b035-021', 'stadiumGoods': ''}" +874c1fea-4cc3-465d-9c02-233ed93acfb1,1011B175-005,ASICS,Gel Pulse 13 'Black Shocking Orange',Black/Shocking Orange,men,Gel Pulse,2022,2022-03-15,90,160,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-pulse-13-black-shocking-orange-1011b175-005', 'flightClub': 'https://flightclub.com/gel-pulse-13-black-shocking-orange-1011b175-005', 'stadiumGoods': ''}" +8bbabd6a-1982-4703-9d66-ed4d1267e8d6,1012A911-103,ASICS,Wmns Gel Contend 7 'White Mist',White/Mist,women,Gel Contend,2022,2022-03-15,65,130,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-contend-7-white-mist-1012a911-103', 'flightClub': 'https://flightclub.com/wmns-gel-contend-7-white-mist-1012a911-103', 'stadiumGoods': ''}" +8c8cb150-e4bd-4782-92b2-587e4a6ea4b9,1041A192-102,ASICS,Gel Game 8 'White Mako Blue',White/Mako Blue,men,Gel Game 8,2022,2022-03-15,80,80,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/501/original/1041A192_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/501/original/1041A192_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/501/original/1041A192_102.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-game-8-white-mako-blue-1041a192-102', 'flightClub': 'https://flightclub.com/gel-game-8-white-mako-blue-1041a192-102', 'stadiumGoods': ''}" +8f324ecc-75b5-48c6-b54d-b591009890c6,H05867,adidas,adidas NMD TR Focus Olive,Focus Olive/Focus Olive/Core Black,men,NMD Runner,2022,2022-03-15,150,99,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/406/original/H05867.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/406/original/H05867.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/406/original/H05867.png.png'}","{'stockX': 'https://stockx.com/adidas-nmd-tr-focus-olive', 'goat': 'https://goat.com/sneakers/nmd_r1-focus-olive-h05867', 'flightClub': 'https://flightclub.com/nmd_r1-focus-olive-h05867', 'stadiumGoods': ''}" +976d667b-d159-4b01-9a78-829be71bce4a,GX1081,adidas,adidas Y-3 Qisan Cozy Black Chalk White,Black / Core White / Chalk Pearl,unisex,Y-3 Qisan,2022,2022-03-15,400,269,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/999/741/original/GX1081.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/999/741/original/GX1081.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/999/741/original/GX1081.png.png'}","{'stockX': 'https://stockx.com/adidas-y-3-qisan-cozy-black-chalk-white', 'goat': 'https://goat.com/sneakers/y-3-qisan-cozy-black-chalk-pearl-gx1081', 'flightClub': 'https://flightclub.com/y-3-qisan-cozy-black-chalk-pearl-gx1081', 'stadiumGoods': ''}" +97c0bc9b-135d-48f9-8dd5-d16c303ed6b8,GY3040,adidas,Freak Ultra 22 'Team Power Red 2',Team Power Red 2/Cloud White/Team Power Red 2,men,Freak Ultra,2022,2022-03-15,180,250,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/123/original/GY3040.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/123/original/GY3040.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/123/original/GY3040.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-ultra-22-team-power-red-2-gy3040', 'flightClub': 'https://flightclub.com/freak-ultra-22-team-power-red-2-gy3040', 'stadiumGoods': ''}" +9d735f11-20d9-4442-96ad-fc1444708b84,GW3063,adidas,adidas NMD V3 Crystal White Signal Green Solar Pink,Crystal White/Core Black/Signal Green,men,NMD_V3,2022,2022-03-15,160,142,"The adidas NMD_V3 ‘Crystal White Signal Green’ pairs neon accents with a sustainable build. Made with at least 50% recycled content, the white textile upper features contrasting black three-stripes and tonal no-sew skins. Interior straps are integrated into the lacing system for a lockdown fit, while a webbing pull loop at the heel provides easy on and off. The sneaker rides on a partially caged Boost midsole, accented with fluorescent green detailing that mimics the look of the original NMD’s EVA plugs.","{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/643/260/original/913220_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/643/260/original/913220_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/643/260/original/913220_00.png.png'}","{'stockX': 'https://stockx.com/adidas-nmd-v3-crystal-white-signal-green-solar-pink', 'goat': 'https://goat.com/sneakers/nmd_v3-crystal-white-signal-green-gw3063', 'flightClub': 'https://flightclub.com/nmd_v3-crystal-white-signal-green-gw3063', 'stadiumGoods': ''}" +9e9776b6-321e-4335-9765-c1c5b18e6596,GW3421,adidas,Freak 22 'Black Gold Metallic',Core Black/Gold Metallic/Grey Six,men,Freak,2022,2022-03-15,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/105/original/GW3421.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/105/original/GW3421.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/105/original/GW3421.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-22-black-gold-metallic-gw3421', 'flightClub': 'https://flightclub.com/freak-22-black-gold-metallic-gw3421', 'stadiumGoods': ''}" +9fc126b8-1049-41e6-9daa-f24cbf8c8efd,GV7389,adidas,Predator Edge.1 Low FG 'UEFA Champions League',Team College Purple/Silver Metallic/Team Shock Pink,men,Predator Edge.1,2022,2022-03-15,250,320,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/808/original/GV7389.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/808/original/GV7389.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/808/original/GV7389.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/predator-edge-1-low-fg-uefa-champions-league-gv7389', 'flightClub': 'https://flightclub.com/predator-edge-1-low-fg-uefa-champions-league-gv7389', 'stadiumGoods': ''}" +a3ee09c4-c34c-47bf-a36c-9bb414b0f451,194917-10,Puma,Liberate Nitro 'Fizzy Light Nitro Blue',Fizzy Light/Nitro Blue,men,Liberate Nitro,2022,2022-03-15,110,110,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/706/original/194917_10.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/706/original/194917_10.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/706/original/194917_10.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/liberate-nitro-fizzy-light-nitro-blue-194917-10', 'flightClub': 'https://flightclub.com/liberate-nitro-fizzy-light-nitro-blue-194917-10', 'stadiumGoods': ''}" +a7381c32-f152-410d-aaa3-aacc7fe917fe,697103-WIBNH-9858,Alexander McQueen,Alexander McQueen Wmns Oversized Sneaker 'Hot Pink',White/Hot Pink,women,Alexander McQueen Oversized Sneaker,2022,2022-03-15,590,590,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/374/717/original/697103_WIBNH_9858.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/374/717/original/697103_WIBNH_9858.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/374/717/original/697103_WIBNH_9858.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/alexander-mcqueen-wmns-oversized-sneaker-hot-pink-697103-wibnh-9858', 'flightClub': 'https://flightclub.com/alexander-mcqueen-wmns-oversized-sneaker-hot-pink-697103-wibnh-9858', 'stadiumGoods': ''}" +a9496cdc-b6ad-4946-8f07-eaeb4d98b001,GZ4306,adidas,adidas NMD R1 Black Speckled Camo Sole,Core Black/Core Black/Cloud White,men,NMD Runner,2022,2022-03-15,150,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/392/original/GZ4306.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/392/original/GZ4306.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/392/original/GZ4306.png.png'}","{'stockX': 'https://stockx.com/adidas-nmd-r1-black-speckled-camo-sole', 'goat': 'https://goat.com/sneakers/nmd_r1-color-splash-core-black-gz4306', 'flightClub': 'https://flightclub.com/nmd_r1-color-splash-core-black-gz4306', 'stadiumGoods': ''}" +ae73df20-8230-4823-b0d8-296084795929,WTARISGC,New Balance,Wmns Fresh Foam Arishi Trail GTX 'Black Bleached Lime Glow',Black/Au Lait/Bleached Lime Glow,women,Fresh Foam Arishi,2022,2022-03-15,90,128,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/408/012/original/WTARISGC.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/408/012/original/WTARISGC.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/408/012/original/WTARISGC.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-fresh-foam-arishi-trail-gtx-black-bleached-lime-glow-wtarisgc', 'flightClub': 'https://flightclub.com/wmns-fresh-foam-arishi-trail-gtx-black-bleached-lime-glow-wtarisgc', 'stadiumGoods': ''}" +b14cfd26-4200-4926-88ae-aef2c73af83a,1011A824-001,ASICS,Gel Venture 8 'Triple Black',Black/Black,men,Gel Venture,2022,2022-03-15,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/479/original/1011A824_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/479/original/1011A824_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/479/original/1011A824_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-venture-8-triple-black-1011a824-001', 'flightClub': 'https://flightclub.com/gel-venture-8-triple-black-1011a824-001', 'stadiumGoods': ''}" +b5d429d4-29c6-4913-91a6-c3e2f3023bfb,GZ6841,adidas,Freak Spark J 'White Gold Metallic',Cloud White/Gold Metallic/Cloud White,youth,Freak,2022,2022-03-15,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/134/original/GZ6841.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/134/original/GZ6841.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/134/original/GZ6841.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-spark-j-white-gold-metallic-gz6841', 'flightClub': 'https://flightclub.com/freak-spark-j-white-gold-metallic-gz6841', 'stadiumGoods': ''}" +b5e5a73a-3f0e-4a36-b3be-c9b1f702cdbe,1011B040-409,ASICS,Gel Contend 7 'French Blue Black',French Blue/Black,men,Gel Contend,2022,2022-03-15,65,97,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/900/original/1011B040_409.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/900/original/1011B040_409.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/900/original/1011B040_409.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-contend-7-french-blue-black-1011b040-409', 'flightClub': 'https://flightclub.com/gel-contend-7-french-blue-black-1011b040-409', 'stadiumGoods': ''}" +bd1187f1-809f-4b5e-9385-60f38dfb218e,1201A242-301,ASICS,Gel Jog MC 'Mantle Green White',Mantle Green/White,men,Gel Jog,2022,2022-03-15,75,75,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/514/original/1201A242_301.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/514/original/1201A242_301.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/514/original/1201A242_301.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-jog-mc-mantle-green-white-1201a242-301', 'flightClub': 'https://flightclub.com/gel-jog-mc-mantle-green-white-1201a242-301', 'stadiumGoods': ''}" +bd4c6d88-22ad-47b8-bafc-0418b23bc0ae,GX5785,adidas,adidas NMD V3 Wonder White Peach,Wonder White/Wonder White/Off White,men,NMD_V3,2022,2022-03-15,160,149,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/987/484/original/913222_00.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/987/484/original/913222_00.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/987/484/original/913222_00.png.png'}","{'stockX': 'https://stockx.com/adidas-nmd-v3-wonder-white-peach', 'goat': 'https://goat.com/sneakers/wmns-nmd_v3-wonder-white-gx5785', 'flightClub': 'https://flightclub.com/wmns-nmd_v3-wonder-white-gx5785', 'stadiumGoods': ''}" +c258a1a6-b002-44b8-b8e0-b0196c8705aa,1173A009-102,ASICS,Zorian BM Sandal 'White Guava',White/Guava,men,Zorian BM Sandal,2022,2022-03-15,30,85,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/613/522/original/1173A009_102.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/613/522/original/1173A009_102.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/613/522/original/1173A009_102.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zorian-bm-sandal-white-guava-1173a009-102', 'flightClub': 'https://flightclub.com/zorian-bm-sandal-white-guava-1173a009-102', 'stadiumGoods': ''}" +cbaac88c-653f-41a7-b161-673f5be83a0d,CT1629-004,Nike,Zoom Pulse 'Photon Dust',Photon Dust/Iron Grey/Volt/Black,men,Zoom Pulse,2022,2022-03-15,120,200,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/017/original/CT1629_004.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/017/original/CT1629_004.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/017/original/CT1629_004.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/zoom-pulse-photon-dust-ct1629-004', 'flightClub': 'https://flightclub.com/zoom-pulse-photon-dust-ct1629-004', 'stadiumGoods': ''}" +db552c1e-c82b-4786-93c4-d51d60e6529d,DO6690-001,Nike,Air Max SC GS 'Smiles for Miles',Black/Iron Grey/White/Yellow Strike,youth,Air Max SC,2022,2022-03-15,75,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/047/original/DO6690_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/047/original/DO6690_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/047/original/DO6690_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-sc-gs-smiles-for-miles-do6690-001', 'flightClub': 'https://flightclub.com/air-max-sc-gs-smiles-for-miles-do6690-001', 'stadiumGoods': ''}" +df8667d0-2618-460d-9bcb-feb86fcdd600,368998F,Converse,Chuck Taylor All Star High PS 'Lemon Chrome',Lemon Chrome/White/Black,youth,Chuck Taylor All Star,2022,2022-03-15,40,40,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/742/original/368998F.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/742/original/368998F.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/742/original/368998F.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/chuck-taylor-all-star-high-ps-lemon-chrome-368998f', 'flightClub': 'https://flightclub.com/chuck-taylor-all-star-high-ps-lemon-chrome-368998f', 'stadiumGoods': ''}" +e33a2c0b-00bd-42a5-a3c3-2dd0d29971ad,GY3650,adidas,Busenitz 'White Collegiate Navy',Cloud White/Collegiate Navy/Shadow Navy,men,Busenitz,2022,2022-03-15,80,139,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/124/original/GY3650.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/124/original/GY3650.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/124/original/GY3650.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/busenitz-white-collegiate-navy-gy3650', 'flightClub': 'https://flightclub.com/busenitz-white-collegiate-navy-gy3650', 'stadiumGoods': ''}" +e5d021b2-914c-4b2e-aa95-c8b83cddef4f,GZ9269,adidas,adidas NMD TR White Grey Purple,Cloud White/Cloud White/Grey One,men,NMD Runner,2022,2022-03-15,150,95,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/404/original/GZ9269.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/404/original/GZ9269.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/404/original/GZ9269.png.png'}","{'stockX': 'https://stockx.com/adidas-nmd-tr-white-grey-purple', 'goat': 'https://goat.com/sneakers/nmd_r1-white-grey-gz9269', 'flightClub': 'https://flightclub.com/nmd_r1-white-grey-gz9269', 'stadiumGoods': ''}" +e97440d8-f908-47f7-81e9-76c26ba0ff02,1112A044-001,ASICS,Wmns Gel Lethal Field 'Black Pure Silver',Black/Pure Silver,women,Gel Lethal,2022,2022-03-15,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/513/original/1112A044_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/513/original/1112A044_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/513/original/1112A044_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-lethal-field-black-pure-silver-1112a044-001', 'flightClub': 'https://flightclub.com/wmns-gel-lethal-field-black-pure-silver-1112a044-001', 'stadiumGoods': ''}" +e996a367-8863-44a8-840d-0a9b75dfe0a9,1011B342-020,ASICS,Gel Kayano 28 Platinum 'Carrier Grey',Carrier Grey/Pure Silver,men,Gel Kayano,2022,2022-03-15,180,187,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/301/934/original/1011B342_020.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/301/934/original/1011B342_020.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/301/934/original/1011B342_020.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-kayano-28-platinum-carrier-grey-1011b342-020', 'flightClub': 'https://flightclub.com/gel-kayano-28-platinum-carrier-grey-1011b342-020', 'stadiumGoods': ''}" +e9f23a66-8673-47c8-a004-626b4e2b4bb7,GY6959,adidas,Wmns UltraBoost 5 DNA 'White Black',Cloud White/Cloud White/Core Black,women,UltraBoost 5.0,2022,2022-03-15,190,190,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/126/original/GY6959.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/126/original/GY6959.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/126/original/GY6959.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ultraboost-5-dna-white-black-gy6959', 'flightClub': 'https://flightclub.com/wmns-ultraboost-5-dna-white-black-gy6959', 'stadiumGoods': ''}" +eb99b312-9e34-4987-8f87-b5af42edc8b5,GY0435,adidas,Freak 22 'Black Grey',Core Black/Core Black/Grey Six,men,Freak,2022,2022-03-15,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/121/original/GY0435.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/121/original/GY0435.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/121/original/GY0435.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-22-black-grey-gy0435', 'flightClub': 'https://flightclub.com/freak-22-black-grey-gy0435', 'stadiumGoods': ''}" +eced5b9b-326c-44a3-8f6c-7dd7cf95b37c,BBW550WA,New Balance,Wmns 550 'Au Lait',White/Au Lait,women,550,2022,2022-03-15,110,214,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/782/original/BBW550WA.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/782/original/BBW550WA.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/782/original/BBW550WA.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-550-au-lait-bbw550wa', 'flightClub': 'https://flightclub.com/wmns-550-au-lait-bbw550wa', 'stadiumGoods': ''}" +ed74111d-793a-4f73-a0d9-898000bb63bd,GW5664,adidas,adidas NMD R1 Black Active Purple,Core Black/Grey Five/Active Purple,men,NMD Runner,2022,2022-03-15,150,145,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/366/original/GW5664.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/366/original/GW5664.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/366/original/GW5664.png.png'}","{'stockX': 'https://stockx.com/adidas-nmd-r1-black-active-purple', 'goat': 'https://goat.com/sneakers/nmd_r1-black-active-purple-gw5664', 'flightClub': 'https://flightclub.com/nmd_r1-black-active-purple-gw5664', 'stadiumGoods': ''}" +ee2aae78-f08b-4f1c-9d5c-19949a02f434,GY3039,adidas,Freak Ultra 22 'Black Night Metallic',Core Black/Night Metallic/Grey Six,men,Freak Ultra,2022,2022-03-15,180,250,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/122/original/GY3039.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/122/original/GY3039.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/122/original/GY3039.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-ultra-22-black-night-metallic-gy3039', 'flightClub': 'https://flightclub.com/freak-ultra-22-black-night-metallic-gy3039', 'stadiumGoods': ''}" +f12ffce6-b9ce-4d6e-8463-3f822764dece,WTARISGC-D,New Balance,Wmns Fresh Foam Arishi Trail GTX Wide 'Black Bleached Lime Glow',Black/Au Lait/Bleached Lime Glow,women,Fresh Foam Arishi,2022,2022-03-15,90,90,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/408/011/original/WTARISGC_D.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/408/011/original/WTARISGC_D.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/408/011/original/WTARISGC_D.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-fresh-foam-arishi-trail-gtx-wide-black-bleached-lime-glow-wtarisgc-d', 'flightClub': 'https://flightclub.com/wmns-fresh-foam-arishi-trail-gtx-wide-black-bleached-lime-glow-wtarisgc-d', 'stadiumGoods': ''}" +f4ef3a5b-868e-4877-b669-84ad52693dcc,S23895,adidas,UltraBoost 21 Cold.RDY 'Triple Black',Core Black/Core Black/Core Black,men,UltraBoost 21,2022,2022-03-15,190,127,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/142/original/S23895.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/142/original/S23895.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/142/original/S23895.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/ultraboost-21-cold-rdy-triple-black-s23895', 'flightClub': 'https://flightclub.com/ultraboost-21-cold-rdy-triple-black-s23895', 'stadiumGoods': ''}" +f890a346-bd52-4923-9876-2d62d5f08380,DJ2851-484,Nike,Mercurial Air Zoom Vapor 14 Pro TF 'Chlorine Blue Laser Orange',Chlorine Blue/Marina/Laser Orange,men,Mercurial Vapor,2022,2022-03-15,120,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/037/original/DJ2851_484.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/037/original/DJ2851_484.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/037/original/DJ2851_484.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/mercurial-air-zoom-vapor-14-pro-tf-chlorine-blue-laser-orange-dj2851-484', 'flightClub': 'https://flightclub.com/mercurial-air-zoom-vapor-14-pro-tf-chlorine-blue-laser-orange-dj2851-484', 'stadiumGoods': ''}" +02289a7d-1606-4c8d-9800-177026c74a5b,172656C,Converse,Weapon CX Mid 'Striped',Black/Prime Pink/Game Royal,men,Weapon,2022,2022-03-14,100,188,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/301/973/original/172656C.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/301/973/original/172656C.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/301/973/original/172656C.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/weapon-cx-mid-striped-172656c', 'flightClub': 'https://flightclub.com/weapon-cx-mid-striped-172656c', 'stadiumGoods': ''}" +067b290c-7ac1-47db-9e36-be3a916be352,GY9093,adidas,Wmns UltraBoost Web DNA 'Black Clear Pink',Core Black/Core Black/Clear Pink,women,UltraBoost,2022,2022-03-14,190,260,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/127/original/GY9093.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/127/original/GY9093.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/127/original/GY9093.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-ultraboost-web-dna-black-clear-pink-gy9093', 'flightClub': 'https://flightclub.com/wmns-ultraboost-web-dna-black-clear-pink-gy9093', 'stadiumGoods': ''}" +0c021ed7-9adc-4583-882a-26660048bb49,1012A908-002,ASICS,Wmns Jolt 'Black',Black/Graphite Grey,women,Jolt,2022,2022-03-14,55,748,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/492/original/1012A908_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/492/original/1012A908_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/492/original/1012A908_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-jolt-black-1012a908-002', 'flightClub': 'https://flightclub.com/wmns-jolt-black-1012a908-002', 'stadiumGoods': ''}" +0d1f2a85-40fa-4b1e-9fea-287ba4e2c8a6,1011B175-101,ASICS,Gel Pulse 13 'White Lake Drive',White/Lake Drive,men,Gel Pulse,2022,2022-03-14,90,160,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-pulse-13-white-lake-drive-1011b175-101', 'flightClub': 'https://flightclub.com/gel-pulse-13-white-lake-drive-1011b175-101', 'stadiumGoods': ''}" +14eb7e71-d54a-4172-aec4-0f59903d624d,GX3618,adidas,adidas EQT CSG 91 Gore-Tex Brown Black,Brown Black/Core Black/Brown Black,men,EQT CSG 91,2022,2022-03-14,160,146,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/376/original/GX3618.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/376/original/GX3618.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/376/original/GX3618.png.png'}","{'stockX': 'https://stockx.com/adidas-eqt-hmg-91-gtx-brown-black', 'goat': 'https://goat.com/sneakers/eqt-csg-91-gtx-brown-black-gx3618', 'flightClub': 'https://flightclub.com/eqt-csg-91-gtx-brown-black-gx3618', 'stadiumGoods': ''}" +1a212968-307e-45c7-a625-fd5614db2cc5,BQ6831-001,Nike,Kawa Slide GS 'Black White',Black/White,youth,Kawa,2022,2022-03-14,20,100,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/283/original/BQ6831_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/283/original/BQ6831_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/283/original/BQ6831_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/kawa-slide-gs-black-white-bq6831-001', 'flightClub': 'https://flightclub.com/kawa-slide-gs-black-white-bq6831-001', 'stadiumGoods': ''}" +1b95bf79-184e-4842-a4c7-e97b3f855fa0,1201A063-003,ASICS,ASICS Gel-Quantum 180 Black Electric Red,Black/Electric Red,men,Gel Quantum 180,2022,2022-03-14,120,118,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/691/original/1201A063_003.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/691/original/1201A063_003.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/691/original/1201A063_003.png.png'}","{'stockX': 'https://stockx.com/asics-gel-quantum-180-black-electric-red', 'goat': 'https://goat.com/sneakers/gel-quantum-180-black-electric-red-1201a063-003', 'flightClub': 'https://flightclub.com/gel-quantum-180-black-electric-red-1201a063-003', 'stadiumGoods': ''}" +1bdcdffa-9e43-4b2b-ad03-89a0a0ea5271,GW3420,adidas,Freak 22 'White Gold Metallic',Cloud White/Gold Metallic/Cloud White,men,Freak,2022,2022-03-14,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/104/original/GW3420.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/104/original/GW3420.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/104/original/GW3420.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-22-white-gold-metallic-gw3420', 'flightClub': 'https://flightclub.com/freak-22-white-gold-metallic-gw3420', 'stadiumGoods': ''}" +1f3260d0-51fd-4567-a023-3f79efe748a7,GX0281,Reebok,Classic Leather 1983 Vintage 'Chalk',Chalk/Chalk/Vector Red,men,Reebok Classic,2022,2022-03-14,90,89,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/068/894/295/original/GX0281.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/068/894/295/original/GX0281.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/068/894/295/original/GX0281.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/classic-leather-1983-vintage-chalk-gx0281', 'flightClub': 'https://flightclub.com/classic-leather-1983-vintage-chalk-gx0281', 'stadiumGoods': ''}" +47776d39-fbea-471d-b041-9867ae69753a,1202A024-020,ASICS,Wmns Japan S Platform 'Oyster Grey',Oyster Grey/Oyster Grey,women,Japan,2022,2022-03-14,70,140,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/301/958/original/1202A024_020.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/301/958/original/1202A024_020.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/301/958/original/1202A024_020.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-japan-s-platform-oyster-grey-1202a024-020', 'flightClub': 'https://flightclub.com/wmns-japan-s-platform-oyster-grey-1202a024-020', 'stadiumGoods': ''}" +50cdda06-1ee0-4cf8-af86-4460db4949c2,1012B035-600,ASICS,Wmns Gel Pulse 13 'Fuchsia Red Champagne',Fuchsia Red/Champagne,women,Gel Pulse,2022,2022-03-14,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/684/original/1012B035_600.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/684/original/1012B035_600.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/684/original/1012B035_600.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-pulse-13-fuchsia-red-champagne-1012b035-600', 'flightClub': 'https://flightclub.com/wmns-gel-pulse-13-fuchsia-red-champagne-1012b035-600', 'stadiumGoods': ''}" +5648d2b3-5041-4846-adf0-92e983d74305,1202A024-001,ASICS,Wmns Japan S Platform 'Black',Black/Black,women,Japan,2022,2022-03-14,70,125,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/301/957/original/1202A024_001.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/301/957/original/1202A024_001.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/301/957/original/1202A024_001.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-japan-s-platform-black-1202a024-001', 'flightClub': 'https://flightclub.com/wmns-japan-s-platform-black-1202a024-001', 'stadiumGoods': ''}" +5e0479c5-4f02-4e97-a73f-25ddd0b5ff2c,1202A147-021,ASICS,Wmns Gel Jog MC 'Piedmont Grey Azure',Piedmont Grey/Azure,women,Gel Jog,2022,2022-03-14,75,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/301/963/original/1202A147_021.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/301/963/original/1202A147_021.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/301/963/original/1202A147_021.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-jog-mc-piedmont-grey-azure-1202a147-021', 'flightClub': 'https://flightclub.com/wmns-gel-jog-mc-piedmont-grey-azure-1202a147-021', 'stadiumGoods': ''}" +60c20c8e-55d8-496a-941b-9fd2850b53d7,DC8793-800,Nike,Pegasus Trail 3 GTX 'Rugged Orange',Rugged Orange/Black/Total Orange/Habanero Red,men,Pegasus Trail 3,2022,2022-03-14,160,240,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/307/original/DC8793_800.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/307/original/DC8793_800.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/307/original/DC8793_800.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/pegasus-trail-3-gtx-rugged-orange-dc8793-800', 'flightClub': 'https://flightclub.com/pegasus-trail-3-gtx-rugged-orange-dc8793-800', 'stadiumGoods': ''}" +615b56ef-4f6a-4cf5-bf42-9079c0cbd599,3026050-100,Under Armour,UA Curry 1 Splash Party (2022),White / Metallic Silver / Electric Blue,men,UA Curry 1,2022,2022-03-14,130,180,,"{'360': [], 'original': 'https://images.stockx.com/images/UA-Curry-1-Splash-Party-2022.jpg?fit=fill&bg=FFFFFF&w=500&h=500&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1647245721', 'small': 'https://images.stockx.com/images/UA-Curry-1-Splash-Party-2022.jpg?fit=fill&bg=FFFFFF&w=375&h=375&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1647245721', 'thumbnail': 'https://images.stockx.com/images/UA-Curry-1-Splash-Party-2022.jpg?fit=fill&bg=FFFFFF&w=200&h=200&fm=webp&auto=compress&trim=color&q=90&dpr=2&updated_at=1647245721'}","{'stockX': 'https://stockx.com/ua-curry-1-splash-party-2022', 'goat': '', 'flightClub': '', 'stadiumGoods': ''}" +69d9aaa7-c6fb-4ffe-9f75-3814dbc8c23a,GX3680,Reebok,Club C 85 Vintage 'Chalk Essential Blue',Chalk/Alabaster/Essential Blue,men,Club C,2022,2022-03-14,85,119,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/111/original/GX3680.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/111/original/GX3680.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/111/original/GX3680.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/club-c-85-vintage-chalk-essential-blue-gx3680', 'flightClub': 'https://flightclub.com/club-c-85-vintage-chalk-essential-blue-gx3680', 'stadiumGoods': ''}" +72be35dd-18d4-4c54-9d61-178b23c55f28,FY8654,adidas,Comfort Sandal 'Black Grey',Core Black/Grey Five/Grey Five,men,Comfort Sandal,2022,2022-03-14,30,95,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/092/original/FY8654.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/092/original/FY8654.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/092/original/FY8654.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/comfort-sandal-black-grey-fy8654', 'flightClub': 'https://flightclub.com/comfort-sandal-black-grey-fy8654', 'stadiumGoods': ''}" +74e007e0-b775-411c-ae0a-8fd390cbbbfc,172665C,Converse,All Star BB Jet Low 'Camo',Black/Bright Crimson/Gum,men,All Star BB Jet,2022,2022-03-14,110,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/301/977/original/172665C.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/301/977/original/172665C.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/301/977/original/172665C.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/all-star-bb-jet-low-camo-172665c', 'flightClub': 'https://flightclub.com/all-star-bb-jet-low-camo-172665c', 'stadiumGoods': ''}" +788cf12e-0553-44f5-8ad8-31715bb05d85,1012A911-005,ASICS,Wmns Gel Contend 7 'Black Lilac Opal',Black/Lilac Opal,women,Gel Contend,2022,2022-03-14,65,130,,"{'360': [], 'original': '', 'small': '', 'thumbnail': ''}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-contend-7-black-lilac-opal-1012a911-005', 'flightClub': 'https://flightclub.com/wmns-gel-contend-7-black-lilac-opal-1012a911-005', 'stadiumGoods': ''}" +79665fa3-aafa-4c76-835f-f4d8b6d4693c,DQ7687-002,Nike,Air Flight Lite Mid 'Black Cyber Teal',Black/Cyber Teal/Red Plum/Black,men,Air Flight Lite,2022,2022-03-14,120,164,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/339/original/DQ7687_002.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/339/original/DQ7687_002.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/339/original/DQ7687_002.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-flight-lite-mid-black-cyber-teal-dq7687-002', 'flightClub': 'https://flightclub.com/air-flight-lite-mid-black-cyber-teal-dq7687-002', 'stadiumGoods': ''}" +7c941d68-2eb6-4097-8b5f-382b4ff34c99,GZ8879,adidas,Terrex Agravic Pro 'Black Turbo',Core Black/Cloud White/Turbo,men,Terrex Agravic,2022,2022-03-14,220,290,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/136/original/GZ8879.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/136/original/GZ8879.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/136/original/GZ8879.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/terrex-agravic-pro-black-turbo-gz8879', 'flightClub': 'https://flightclub.com/terrex-agravic-pro-black-turbo-gz8879', 'stadiumGoods': ''}" +81c70720-b264-40aa-b1d9-68b635edd4e8,1012B035-300,ASICS,Wmns Gel Pulse 13 'Sage White',Sage/White,women,Gel Pulse,2022,2022-03-14,90,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/679/original/1012B035_300.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/679/original/1012B035_300.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/679/original/1012B035_300.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-gel-pulse-13-sage-white-1012b035-300', 'flightClub': 'https://flightclub.com/wmns-gel-pulse-13-sage-white-1012b035-300', 'stadiumGoods': ''}" +829325dd-41cf-4126-8899-9f1c2accdae7,1011B040-403,ASICS,Gel Contend 7 'Monaco Blue',Monaco Blue/Black,men,Gel Contend,2022,2022-03-14,65,65,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/407/898/original/1011B040_403.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/407/898/original/1011B040_403.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/407/898/original/1011B040_403.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/gel-contend-7-monaco-blue-1011b040-403', 'flightClub': 'https://flightclub.com/gel-contend-7-monaco-blue-1011b040-403', 'stadiumGoods': ''}" +87278e06-8e90-4d7b-a27b-1fdeff6ac39f,385833-01,Puma,DC Comics x Cali Star Infant 'Wonder Woman',White/Intense Red,infant,Cali,2022,2022-03-14,60,102,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/536/537/original/385833_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/536/537/original/385833_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/536/537/original/385833_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/dc-comics-x-cali-star-infant-wonder-woman-385833-01', 'flightClub': 'https://flightclub.com/dc-comics-x-cali-star-infant-wonder-woman-385833-01', 'stadiumGoods': ''}" +8a270538-475d-45c5-809e-fcf1e79d7a64,DQ3558-100,Nike,Vapor Edge Elite 360 Flyknit 'White Metallic Silver',White/Light Smoke Grey/Metallic Silver/Black,men,Vapor Edge,2022,2022-03-14,200,280,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/334/original/DQ3558_100.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/334/original/DQ3558_100.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/334/original/DQ3558_100.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/vapor-edge-elite-360-flyknit-white-metallic-silver-dq3558-100', 'flightClub': 'https://flightclub.com/vapor-edge-elite-360-flyknit-white-metallic-silver-dq3558-100', 'stadiumGoods': ''}" +9034457e-c061-48f6-9a2f-b0516b6ee16c,GX5132,adidas,Freak 22 'White Grey',Cloud White/Cloud White/Clear Grey,men,Freak,2022,2022-03-14,100,170,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/113/original/GX5132.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/113/original/GX5132.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/113/original/GX5132.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-22-white-grey-gx5132', 'flightClub': 'https://flightclub.com/freak-22-white-grey-gx5132', 'stadiumGoods': ''}" +995dd805-9d6e-4fd7-b079-55bbd31858d7,DX6757-400,Nike,Star Runner 3 TD 'Worn Blue',Worn Blue/Crimson Bliss,infant,Star Runner,2022,2022-03-14,48,130,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/345/original/DX6757_400.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/345/original/DX6757_400.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/345/original/DX6757_400.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/star-runner-3-td-worn-blue-dx6757-400', 'flightClub': 'https://flightclub.com/star-runner-3-td-worn-blue-dx6757-400', 'stadiumGoods': ''}" +abdf6a06-7a1d-4cae-bda2-bcc38941acfb,943345-111,Nike,Air Max 270 GS 'White Siren Red',White/Black/Siren Red/Medium Ash,youth,Air Max 270,2022,2022-03-14,130,111,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/279/original/943345_111.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/279/original/943345_111.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/279/original/943345_111.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/air-max-270-gs-white-siren-red-943345-111', 'flightClub': 'https://flightclub.com/air-max-270-gs-white-siren-red-943345-111', 'stadiumGoods': ''}" +ae42e790-c1a1-49ac-a454-8b74081e7a43,819352-602,Nike,Kawa Slide GS 'Psychic Pink',Psychic Pink/Laser Fuchsia/White,youth,Kawa,2022,2022-03-14,26,102,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/276/original/819352_602.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/276/original/819352_602.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/276/original/819352_602.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/kawa-slide-gs-psychic-pink-819352-602', 'flightClub': 'https://flightclub.com/kawa-slide-gs-psychic-pink-819352-602', 'stadiumGoods': ''}" +af3684b3-95e2-4d91-893f-ee33e710ad23,GZ6246,adidas,Disney x Wmns ZX Wavian 'Bambi',Chalk White/Wonder White/Core Black,women,ZX Wavian,2022,2022-03-14,130,160,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/131/original/GZ6246.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/131/original/GZ6246.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/131/original/GZ6246.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/disney-x-wmns-zx-wavian-bambi-gz6246', 'flightClub': 'https://flightclub.com/disney-x-wmns-zx-wavian-bambi-gz6246', 'stadiumGoods': ''}" +b3089d50-7024-4095-ad77-fff1e8991cdc,381179-01,Puma,Basket Mid Vintage 'Sherpa',Green Gables/Pebble/Sweet Grape,men,Basket,2022,2022-03-14,70,70,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/356/750/original/381179_01.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/356/750/original/381179_01.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/356/750/original/381179_01.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/basket-mid-vintage-sherpa-381179-01', 'flightClub': 'https://flightclub.com/basket-mid-vintage-sherpa-381179-01', 'stadiumGoods': ''}" +b34b98a7-1680-4401-a824-4a49c8ee0dd0,GX7979,adidas,Freak Ultra 22 'White Gold Metallic',Cloud White/Gold Metallic/Cloud White,men,Freak Ultra,2022,2022-03-14,180,250,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/119/original/GX7979.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/119/original/GX7979.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/119/original/GX7979.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-ultra-22-white-gold-metallic-gx7979', 'flightClub': 'https://flightclub.com/freak-ultra-22-white-gold-metallic-gx7979', 'stadiumGoods': ''}" +b6bd4804-cec1-4ed7-817e-322dd5343483,704949-012,Nike,Huarache Run PS 'Cool Grey',Cool Grey/Wolf Grey/White/Cool Grey,youth,Huarache,2022,2022-03-14,68,150,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/274/original/704949_012.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/274/original/704949_012.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/274/original/704949_012.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/huarache-run-ps-cool-grey-704949-012', 'flightClub': 'https://flightclub.com/huarache-run-ps-cool-grey-704949-012', 'stadiumGoods': ''}" +b764d270-d7eb-49dd-ba61-2a25a7655e78,DO5886-900,Nike,Wmns Air Vapormax 2021 Flyknit 'Multi-Color',Multi-Color/Lime Glow/Racer Pink/Black,women,Air VaporMax,2022,2022-03-14,200,175,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/253/330/original/DO5886_900.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/253/330/original/DO5886_900.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/253/330/original/DO5886_900.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/wmns-air-vapormax-2021-flyknit-multi-color-do5886-900', 'flightClub': 'https://flightclub.com/wmns-air-vapormax-2021-flyknit-multi-color-do5886-900', 'stadiumGoods': ''}" +cc68a042-f2c2-4d0e-92cb-8e3ee563a122,GX5131,adidas,Freak Ultra 22 'White Silver Metallic',Cloud White/Silver Metallic/Clear Grey,men,Freak Ultra,2022,2022-03-14,180,250,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/112/original/GX5131.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/112/original/GX5131.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/112/original/GX5131.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/freak-ultra-22-white-silver-metallic-gx5131', 'flightClub': 'https://flightclub.com/freak-ultra-22-white-silver-metallic-gx5131', 'stadiumGoods': ''}" +cfcaf8f4-3e1e-46bd-bd91-bb3a04db282d,CU1722-960,Converse,Chuck Taylor All Star High Custom,Multi-Color/Multi-Color,men,Chuck Taylor All Star,2022,2022-03-14,85,85,,"{'360': [], 'original': 'https://image.goat.com/attachments/product_template_pictures/images/069/302/020/original/CU1722_960.png.png', 'small': 'https://image.goat.com/750/attachments/product_template_pictures/images/069/302/020/original/CU1722_960.png.png', 'thumbnail': 'https://image.goat.com/375/attachments/product_template_pictures/images/069/302/020/original/CU1722_960.png.png'}","{'stockX': '', 'goat': 'https://goat.com/sneakers/chuck-taylor-all-star-high-custom-cu1722-960', 'flightClub': 'https://flightclub.com/chuck-taylor-all-star-high-custom-cu1722-960', 'stadiumGoods': ''}" diff --git a/your-code/.gitkeep b/your-code/.gitkeep deleted file mode 100644 index e69de29..0000000 From 1a34ded24ca61fea0e617cfe46e33766cbe116a7 Mon Sep 17 00:00:00 2001 From: FranciscoEP Date: Fri, 8 Apr 2022 13:00:24 -0500 Subject: [PATCH 2/3] Minor changes added on api project over keyheader --- .ipynb_checkpoints/Project_2_API-checkpoint.ipynb | 12 ++++++------ Project_2_API.ipynb | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.ipynb_checkpoints/Project_2_API-checkpoint.ipynb b/.ipynb_checkpoints/Project_2_API-checkpoint.ipynb index 9bbe534..f54c3e3 100644 --- a/.ipynb_checkpoints/Project_2_API-checkpoint.ipynb +++ b/.ipynb_checkpoints/Project_2_API-checkpoint.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "b650bfea", + "id": "09275d8e", "metadata": {}, "source": [ "# Project API" @@ -23,7 +23,7 @@ }, { "cell_type": "markdown", - "id": "491ce6d8", + "id": "422fc8ef", "metadata": {}, "source": [ "## Data Extraction Function" @@ -53,7 +53,7 @@ }, { "cell_type": "markdown", - "id": "677fbd20", + "id": "eed3c5b6", "metadata": {}, "source": [ "## Data Transformation Function" @@ -80,7 +80,7 @@ }, { "cell_type": "markdown", - "id": "c2ebc17a", + "id": "930da886", "metadata": {}, "source": [ "## General Function" @@ -124,7 +124,7 @@ "def run():\n", " headers = {\n", "\t\"X-RapidAPI-Host\": \"the-sneaker-database.p.rapidapi.com\",\n", - "\t\"X-RapidAPI-Key\": \"\"\n", + "\t\"X-RapidAPI-Key\":\"\"\n", " }\n", " url = 'https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=%s'\n", " print(\"The information is requested from API\")\n", @@ -137,7 +137,7 @@ }, { "cell_type": "markdown", - "id": "cdde4139", + "id": "6781337d", "metadata": {}, "source": [ "## Read file" diff --git a/Project_2_API.ipynb b/Project_2_API.ipynb index 3464a07..f54c3e3 100644 --- a/Project_2_API.ipynb +++ b/Project_2_API.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "c5500461", + "id": "09275d8e", "metadata": {}, "source": [ "# Project API" @@ -23,7 +23,7 @@ }, { "cell_type": "markdown", - "id": "cfd73b47", + "id": "422fc8ef", "metadata": {}, "source": [ "## Data Extraction Function" @@ -53,7 +53,7 @@ }, { "cell_type": "markdown", - "id": "0c7fad35", + "id": "eed3c5b6", "metadata": {}, "source": [ "## Data Transformation Function" @@ -80,7 +80,7 @@ }, { "cell_type": "markdown", - "id": "f925eb2e", + "id": "930da886", "metadata": {}, "source": [ "## General Function" @@ -124,7 +124,7 @@ "def run():\n", " headers = {\n", "\t\"X-RapidAPI-Host\": \"the-sneaker-database.p.rapidapi.com\",\n", - "\t\"X-RapidAPI-Key\"\n", + "\t\"X-RapidAPI-Key\":\"\"\n", " }\n", " url = 'https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=%s'\n", " print(\"The information is requested from API\")\n", @@ -137,7 +137,7 @@ }, { "cell_type": "markdown", - "id": "91a96f13", + "id": "6781337d", "metadata": {}, "source": [ "## Read file" From 422b88125028f5ff68a7132f6951a5ec9e372c58 Mon Sep 17 00:00:00 2001 From: FranciscoEP Date: Fri, 8 Apr 2022 16:48:14 -0500 Subject: [PATCH 3/3] Updated output --- .../Project_2_API-checkpoint.ipynb | 10 +-- Project_2_API.ipynb | 53 ++++++++----- Project_2_Web_Scrapping.ipynb | 75 ++++++++++--------- data/car_sales_kavak.csv | 10 +-- 4 files changed, 81 insertions(+), 67 deletions(-) diff --git a/.ipynb_checkpoints/Project_2_API-checkpoint.ipynb b/.ipynb_checkpoints/Project_2_API-checkpoint.ipynb index f54c3e3..85b28ff 100644 --- a/.ipynb_checkpoints/Project_2_API-checkpoint.ipynb +++ b/.ipynb_checkpoints/Project_2_API-checkpoint.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "09275d8e", + "id": "6c8f248c", "metadata": {}, "source": [ "# Project API" @@ -23,7 +23,7 @@ }, { "cell_type": "markdown", - "id": "422fc8ef", + "id": "787e37c6", "metadata": {}, "source": [ "## Data Extraction Function" @@ -53,7 +53,7 @@ }, { "cell_type": "markdown", - "id": "eed3c5b6", + "id": "255f5471", "metadata": {}, "source": [ "## Data Transformation Function" @@ -80,7 +80,7 @@ }, { "cell_type": "markdown", - "id": "930da886", + "id": "3eac3baf", "metadata": {}, "source": [ "## General Function" @@ -137,7 +137,7 @@ }, { "cell_type": "markdown", - "id": "6781337d", + "id": "d016c507", "metadata": {}, "source": [ "## Read file" diff --git a/Project_2_API.ipynb b/Project_2_API.ipynb index f54c3e3..6e4e187 100644 --- a/Project_2_API.ipynb +++ b/Project_2_API.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "09275d8e", + "id": "582ca6a5", "metadata": {}, "source": [ "# Project API" @@ -23,7 +23,7 @@ }, { "cell_type": "markdown", - "id": "422fc8ef", + "id": "a44fdf41", "metadata": {}, "source": [ "## Data Extraction Function" @@ -53,7 +53,7 @@ }, { "cell_type": "markdown", - "id": "eed3c5b6", + "id": "d8a1d3e3", "metadata": {}, "source": [ "## Data Transformation Function" @@ -80,7 +80,7 @@ }, { "cell_type": "markdown", - "id": "930da886", + "id": "23ac0bae", "metadata": {}, "source": [ "## General Function" @@ -88,7 +88,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 4, "id": "4497a1a7", "metadata": {}, "outputs": [ @@ -103,20 +103,33 @@ "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=2 to server\n", "Response extracted successfully\n", "--------------------------------------------------------------------------------\n", - "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=3 to server\n" - ] - }, - { - "ename": "KeyboardInterrupt", - "evalue": "", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", - "Input \u001b[0;32mIn [7]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 9\u001b[0m df \u001b[38;5;241m=\u001b[39m convert_csv(response) \n\u001b[1;32m 11\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;18m__name__\u001b[39m \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m__main__\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[0;32m---> 12\u001b[0m \u001b[43mrun\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", - "Input \u001b[0;32mIn [7]\u001b[0m, in \u001b[0;36mrun\u001b[0;34m()\u001b[0m\n\u001b[1;32m 6\u001b[0m url \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mhttps://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=\u001b[39m\u001b[38;5;132;01m%s\u001b[39;00m\u001b[38;5;124m'\u001b[39m\n\u001b[1;32m 7\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mThe information is requested from API\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m----> 8\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[43mget_data\u001b[49m\u001b[43m(\u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43mheaders\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 9\u001b[0m df \u001b[38;5;241m=\u001b[39m convert_csv(response)\n", - "Input \u001b[0;32mIn [2]\u001b[0m, in \u001b[0;36mget_data\u001b[0;34m(url, headers)\u001b[0m\n\u001b[1;32m 4\u001b[0m sleep(\u001b[38;5;241m2\u001b[39m)\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mRequesting \u001b[39m\u001b[38;5;132;01m{\u001b[39;00murl\u001b[38;5;241m%\u001b[39mpage\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m to server\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m----> 6\u001b[0m \u001b[43msleep\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 7\u001b[0m response \u001b[38;5;241m=\u001b[39m requests\u001b[38;5;241m.\u001b[39mrequest(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mGET\u001b[39m\u001b[38;5;124m\"\u001b[39m, url\u001b[38;5;241m%\u001b[39mpage, headers\u001b[38;5;241m=\u001b[39mheaders)\n\u001b[1;32m 8\u001b[0m response \u001b[38;5;241m=\u001b[39m response\u001b[38;5;241m.\u001b[39mjson() \n", - "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=3 to server\n", + "Response extracted successfully\n", + "--------------------------------------------------------------------------------\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=4 to server\n", + "Response extracted successfully\n", + "--------------------------------------------------------------------------------\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=5 to server\n", + "Response extracted successfully\n", + "--------------------------------------------------------------------------------\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=6 to server\n", + "Response extracted successfully\n", + "--------------------------------------------------------------------------------\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=7 to server\n", + "Response extracted successfully\n", + "--------------------------------------------------------------------------------\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=8 to server\n", + "Response extracted successfully\n", + "--------------------------------------------------------------------------------\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=9 to server\n", + "Response extracted successfully\n", + "--------------------------------------------------------------------------------\n", + "Requesting https://the-sneaker-database.p.rapidapi.com/sneakers?limit=100&page=10 to server\n", + "Response extracted successfully\n", + "--------------------------------------------------------------------------------\n", + "Preparing information to be ready in file\n", + "File ready on data folder with name 'sneakers.csv'\n", + "--------------------------------------------------------------------------------\n" ] } ], @@ -137,7 +150,7 @@ }, { "cell_type": "markdown", - "id": "6781337d", + "id": "f993ab6b", "metadata": {}, "source": [ "## Read file" diff --git a/Project_2_Web_Scrapping.ipynb b/Project_2_Web_Scrapping.ipynb index da7fb7b..7d39498 100644 --- a/Project_2_Web_Scrapping.ipynb +++ b/Project_2_Web_Scrapping.ipynb @@ -88,6 +88,7 @@ " for page in range(1,11):\n", " print(f\"Request information: {url%page}\")\n", " response = requests.get(url%page, sleep(2)) \n", + " \n", " print(f\"Extracting information from page #{page}\")\n", " cars_response.append(list((get_cars_content(response.content))))\n", " sleep(2) \n", @@ -277,14 +278,6 @@ " \n", " \n", " 354\n", - " Nissan Altima Advance Navi\n", - " 2017\n", - " 62,500\n", - " Monterrey\n", - " $303,999\n", - " \n", - " \n", - " 355\n", " Hyundai Creta Limited\n", " 2019\n", " 109,700\n", @@ -292,7 +285,7 @@ " $388,999\n", " \n", " \n", - " 356\n", + " 355\n", " Chevrolet Sonic LS (Línea anterior)\n", " 2016\n", " 95,100\n", @@ -300,7 +293,7 @@ " $174,999\n", " \n", " \n", - " 357\n", + " 356\n", " Dodge Journey SE\n", " 2015\n", " 116,500\n", @@ -308,13 +301,21 @@ " $254,999\n", " \n", " \n", - " 358\n", + " 357\n", " Volkswagen Passat CC 2.0T\n", " 2016\n", " 99,500\n", " Monterrey\n", " $312,999\n", " \n", + " \n", + " 358\n", + " Nissan Sentra Sense\n", + " 2017\n", + " 63,000\n", + " Monterrey\n", + " $222,999\n", + " \n", " \n", "\n", "

359 rows × 5 columns

\n", @@ -328,11 +329,11 @@ "3 Infiniti Q50 Híbrido 2017 83,440 Monterrey $396,999\n", "4 Mazda MX-5 I Sport 2017 53,960 Monterrey $310,999\n", ".. ... ... ... ... ...\n", - "354 Nissan Altima Advance Navi 2017 62,500 Monterrey $303,999\n", - "355 Hyundai Creta Limited 2019 109,700 Monterrey $388,999\n", - "356 Chevrolet Sonic LS (Línea anterior) 2016 95,100 Monterrey $174,999\n", - "357 Dodge Journey SE 2015 116,500 Monterrey $254,999\n", - "358 Volkswagen Passat CC 2.0T 2016 99,500 Monterrey $312,999\n", + "354 Hyundai Creta Limited 2019 109,700 Monterrey $388,999\n", + "355 Chevrolet Sonic LS (Línea anterior) 2016 95,100 Monterrey $174,999\n", + "356 Dodge Journey SE 2015 116,500 Monterrey $254,999\n", + "357 Volkswagen Passat CC 2.0T 2016 99,500 Monterrey $312,999\n", + "358 Nissan Sentra Sense 2017 63,000 Monterrey $222,999\n", "\n", "[359 rows x 5 columns]" ] @@ -431,14 +432,6 @@ " \n", " \n", " 354\n", - " Nissan Altima Advance Navi\n", - " 2017\n", - " 62,500\n", - " Monterrey\n", - " $303,999\n", - " \n", - " \n", - " 355\n", " Hyundai Creta Limited\n", " 2019\n", " 109,700\n", @@ -446,7 +439,7 @@ " $388,999\n", " \n", " \n", - " 356\n", + " 355\n", " Chevrolet Sonic LS (Línea anterior)\n", " 2016\n", " 95,100\n", @@ -454,7 +447,7 @@ " $174,999\n", " \n", " \n", - " 357\n", + " 356\n", " Dodge Journey SE\n", " 2015\n", " 116,500\n", @@ -462,13 +455,21 @@ " $254,999\n", " \n", " \n", - " 358\n", + " 357\n", " Volkswagen Passat CC 2.0T\n", " 2016\n", " 99,500\n", " Monterrey\n", " $312,999\n", " \n", + " \n", + " 358\n", + " Nissan Sentra Sense\n", + " 2017\n", + " 63,000\n", + " Monterrey\n", + " $222,999\n", + " \n", " \n", "\n", "

359 rows × 5 columns

\n", @@ -482,11 +483,11 @@ "3 Infiniti Q50 Híbrido 2017 83,440 Monterrey \n", "4 Mazda MX-5 I Sport 2017 53,960 Monterrey \n", ".. ... ... ... ... \n", - "354 Nissan Altima Advance Navi 2017 62,500 Monterrey \n", - "355 Hyundai Creta Limited 2019 109,700 Monterrey \n", - "356 Chevrolet Sonic LS (Línea anterior) 2016 95,100 Monterrey \n", - "357 Dodge Journey SE 2015 116,500 Monterrey \n", - "358 Volkswagen Passat CC 2.0T 2016 99,500 Monterrey \n", + "354 Hyundai Creta Limited 2019 109,700 Monterrey \n", + "355 Chevrolet Sonic LS (Línea anterior) 2016 95,100 Monterrey \n", + "356 Dodge Journey SE 2015 116,500 Monterrey \n", + "357 Volkswagen Passat CC 2.0T 2016 99,500 Monterrey \n", + "358 Nissan Sentra Sense 2017 63,000 Monterrey \n", "\n", " Prices \n", "0 $249,999 \n", @@ -495,11 +496,11 @@ "3 $396,999 \n", "4 $310,999 \n", ".. ... \n", - "354 $303,999 \n", - "355 $388,999 \n", - "356 $174,999 \n", - "357 $254,999 \n", - "358 $312,999 \n", + "354 $388,999 \n", + "355 $174,999 \n", + "356 $254,999 \n", + "357 $312,999 \n", + "358 $222,999 \n", "\n", "[359 rows x 5 columns]" ] diff --git a/data/car_sales_kavak.csv b/data/car_sales_kavak.csv index 05aea94..6c9baa5 100644 --- a/data/car_sales_kavak.csv +++ b/data/car_sales_kavak.csv @@ -18,9 +18,11 @@ Jeep Grand Cherokee Limited Lujo,2019,"21,760",Monterrey,"$763,999" Chevrolet Cruze LT Turbo,2017,"64,200",Monterrey,"$224,999" Seat Leon Style 1.4T,2016,"87,299",Monterrey,"$236,999" Renault Koleos Iconic,2019,"33,700",Monterrey,"$465,999" +Chevrolet Aveo LTZ (Línea anterior),2017,"97,000",Monterrey,"$176,999" Nissan X Trail Híbrido,2018,"90,000",Monterrey,"$497,999" Ford Explorer Limited,2015,"69,000",Monterrey,"$423,999" Volkswagen Vento Comfortline,2019,"59,000",Monterrey,"$250,999" +Honda Hr-V Epic,2017,"69,300",Monterrey,"$345,999" Toyota RAV4 XLE,2020,"40,000",Monterrey,"$550,999" Chevrolet Aveo LS,2019,"65,000",Monterrey,"$198,999" Volkswagen Gol Trendline,2018,"54,600",Monterrey,"$207,999" @@ -181,7 +183,6 @@ Gmc Terrain Denali,2017,"53,400",Monterrey,"$408,999" Ford Eco Sport Trend,2018,"56,100",Monterrey,"$290,999" Kia Sportage EX (Línea anterior),2016,"35,700",Monterrey,"$318,999" Kia Sportage EX (Línea nueva),2016,"86,150",Monterrey,"$322,999" -Subaru Legacy 2.5i GT,2013,"68,200",Monterrey,"$223,999" Honda CR-V EXL,2016,"71,100",Monterrey,"$386,999" Chevrolet Sonic HB. LT TA (Línea anterior),2016,"63,600",Monterrey,"$174,999" Volkswagen Jetta A6 Comfortline,2018,"67,600",Monterrey,"$302,999" @@ -217,7 +218,6 @@ Chevrolet Equinox LT (Línea anterior),2017,"96,200",Monterrey,"$310,999" Infiniti QX60 QX60 Perfection Plus,2017,"83,600",Monterrey,"$542,999" Kia Soul EX,2016,"31,100",Monterrey,"$263,999" Chevrolet Cavalier LS,2018,"60,600",Monterrey,"$214,999" -Ford Explorer XLT Base,2010,"139,000",Monterrey,"$168,999" Mazda 2 Hatch Back i,2018,"52,400",Monterrey,"$253,999" Acura MDX MDX,2016,"81,400",Monterrey,"$437,999" Suzuki Swift Hatch Back Boosterjet,2019,"41,000",Monterrey,"$304,999" @@ -233,6 +233,7 @@ Dodge Journey SXT Plus,2014,"100,200",Monterrey,"$244,999" Mercedes Benz Clase A A200 Style,2017,"86,200",Monterrey,"$364,999" Kia Rio EX,2017,"89,750",Monterrey,"$235,999" Mazda 2 I Touring,2019,"20,800",Monterrey,"$302,999" +Toyota Tacoma TRD Sport,2013,"132,000",Monterrey,"$396,999" Honda Odyssey Touring,2011,"109,300",Monterrey,"$270,999" Seat Ibiza Style 1.2T,2015,"110,200",Monterrey,"$199,999" Mazda 3 i touring,2015,"102,500",Monterrey,"$235,999" @@ -240,7 +241,6 @@ Mazda 3 i touring TA,2016,"106,300",Monterrey,"$241,999" Nissan Sentra Advance,2017,"85,600",Monterrey,"$244,999" Chevrolet Beat LTZ,2020,"50,100",Monterrey,"$208,999" Honda CR-V LX,2014,"115,600",Monterrey,"$285,999" -Seat Toledo Style,2017,"55,100",Monterrey,"$231,999" Chevrolet Beat LT,2018,"85,650",Monterrey,"$165,999" Kia Sportage EX (Línea anterior),2016,"62,850",Monterrey,"$314,999" Nissan X Trail Exclusive,2015,"83,000",Monterrey,"$303,999" @@ -348,8 +348,7 @@ Nissan March Hatch Back Sense,2019,"69,400",Monterrey,"$197,999" Jeep Renegade Latitude,2018,"57,000",Monterrey,"$381,999" Buick Enclave Premium,2017,"59,100",Monterrey,"$487,999" Chevrolet Beat LT,2019,"102,600",Monterrey,"$196,999" -Honda Fit HB LX,2014,"77,200",Monterrey,"$183,999" -Kia Sorento EX Pack,2018,"40,500",Monterrey,"$515,999" +Honda Fit HB LX,2014,"40,500",Monterrey,"$183,999" Nissan NP300 Frontier Doble Cabina,2018,"100,000",Monterrey,"$534,999" Mazda Cx-3 I Grand Touring,2017,"35,200",Monterrey,"$341,999" Chevrolet Equinox Premier Plus (Línea nueva),2018,"74,000",Monterrey,"$467,999" @@ -358,3 +357,4 @@ Hyundai Creta Limited,2019,"109,700",Monterrey,"$388,999" Chevrolet Sonic LS (Línea anterior),2016,"95,100",Monterrey,"$174,999" Dodge Journey SE,2015,"116,500",Monterrey,"$254,999" Volkswagen Passat CC 2.0T,2016,"99,500",Monterrey,"$312,999" +Nissan Sentra Sense,2017,"63,000",Monterrey,"$222,999"