|
| 1 | +--- |
| 2 | +title: "StadiumGoods Product" |
| 3 | +api: "GET https://app.retailed.io/api/v1/stadiumgoods/product" |
| 4 | +description: "Get product information from StadiumGoods" |
| 5 | +--- |
| 6 | + |
| 7 | +### Header |
| 8 | + |
| 9 | +<ParamField header="x-api-key" type="string" required={true}> |
| 10 | + Parameter defines the Retailed private key to use. |
| 11 | +</ParamField> |
| 12 | + |
| 13 | +### Parameters |
| 14 | + |
| 15 | +<ParamField query="query" type="string" optional={false} placeholder="BQ6472-015"> |
| 16 | + Product SKU : `BQ6472-015` |
| 17 | +</ParamField> |
| 18 | + |
| 19 | +### Response |
| 20 | + |
| 21 | +<ResponseField name="object" type="Product Object"> |
| 22 | + <Expandable title="properties" defaultOpen={true}> |
| 23 | + <ResponseField name="id" type="string"> |
| 24 | + StadiumGoods product id |
| 25 | + </ResponseField> |
| 26 | + <ResponseField name="slug" type="string"> |
| 27 | + StadiumGoods product slug |
| 28 | + </ResponseField> |
| 29 | + <ResponseField name="name" type="string"> |
| 30 | + StadiumGoods product name |
| 31 | + </ResponseField> |
| 32 | + <ResponseField name="description" type="string"> |
| 33 | + StadiumGoods product description |
| 34 | + </ResponseField> |
| 35 | + <ResponseField name="sku" type="string"> |
| 36 | + StadiumGoods product SKU |
| 37 | + </ResponseField> |
| 38 | + <ResponseField name="image" type="list"> |
| 39 | + StadiumGoods product images |
| 40 | + </ResponseField> |
| 41 | + </Expandable> |
| 42 | +</ResponseField> |
| 43 | + |
| 44 | +<RequestExample> |
| 45 | + |
| 46 | +```bash product |
| 47 | +curl --location --request GET 'https://app.retailed.io/api/v1/stadiumgoods/product?query=BQ6472-015' \ |
| 48 | +--header 'Content-Type: application/json' \ |
| 49 | +--header 'x-api-key: <token>' \ |
| 50 | +``` |
| 51 | + |
| 52 | +</RequestExample> |
| 53 | + |
| 54 | +<ResponseExample> |
| 55 | +```json product |
| 56 | +{ |
| 57 | + "id": "17523559", |
| 58 | + "slug": "wmns-air-jordan-1-mid-grey-fog-17523559", |
| 59 | + "name": "WMNS Air Jordan 1 Mid Grey Fog", |
| 60 | + "description": "The Women’s Air Jordan 1 Mid “Grey Fog” is a women's colorway of Michael Jordan’s first signature shoe in its mid-top style that excels in versatility. The “Grey Fog” brings another appealing look to the Air Jordan 1 Mid, one of the most popular shoes in Jordan Brand’s collection. Designed to be dressed up or down, the “Grey Fog” features white leather on the perforated toe, mid-panel, and collar. Contrasting Grey Fog leather appears on the overlays on the toe cap, forefoot, eyelets, collar, and heel. The Swoosh is found in black leather and a black Wings logo appears on the collar. Additional branding, including a black Jumpman logo and “Air” detailing, can be found on the white nylon tongue tag.", |
| 61 | + "sku": "BQ6472-015", |
| 62 | + "images": [ |
| 63 | + "https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43042724_2048.jpg", |
| 64 | + "https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43042726_2048.jpg", |
| 65 | + "https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043800_2048.jpg", |
| 66 | + "https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043813_2048.jpg", |
| 67 | + "https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043819_2048.jpg", |
| 68 | + "https://img.stadiumgoods.com/jordan-wmns-air-jordan-1-mid-grey-fog_17523559_43043827_2048.jpg" |
| 69 | + ] |
| 70 | +} |
| 71 | +``` |
| 72 | +</ResponseExample> |
0 commit comments