Skip to content

Commit aeebd28

Browse files
committed
✨ add stadiumgoods
1 parent eec143d commit aeebd28

File tree

3 files changed

+85
-12
lines changed

3 files changed

+85
-12
lines changed

database/stadiumgoods/product.mdx

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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>

mint.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -92,19 +92,20 @@
9292
{
9393
"group": "StockX",
9494
"pages": [
95-
{
96-
"group": "Product",
97-
"pages": [
98-
"database/stockx/search",
99-
"database/stockx/product",
100-
"database/stockx/product_360",
101-
"database/stockx/product_activity",
102-
"database/stockx/product_graph"
103-
]
104-
},
95+
"database/stockx/search",
96+
"database/stockx/product",
97+
"database/stockx/product_360",
98+
"database/stockx/product_activity",
99+
"database/stockx/product_graph",
105100
"database/stockx/trends"
106101
]
107102
},
103+
{
104+
"group": "Stadium Goods",
105+
"pages": [
106+
"database/stadiumgoods/product"
107+
]
108+
},
108109
{
109110
"group": "Help",
110111
"pages": [

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"dependencies": {
3-
"@mintlify/previewing": "^3.1.13"
2+
"scripts": {
3+
"dev": "mintlify dev"
44
}
55
}

0 commit comments

Comments
 (0)