5. Trendyol Brand List
The brandId information will be obtained using this service.
- You need to send "storeFrontCode" as Header Parameter.
Stage and prod environment have different ids. For instance brandId information in stage and prod can differ. You should use our prod services while mapping your ids for the prod environment
HTTP method: GET
Query Parameter List
| Parameter | Type | Min | Max |
|---|---|---|---|
| page | int | ||
| size | int | 1000 | 2000 |
Sample Service Response
{
"brands": [
{
"id": 1584892,
"name": "brand-1"
},
{
"id": 1436915,
"name": "brand-2"
},
{
"id": 1415659,
"name": "brand-3"
},
{
"id": 1429032,
"name": "brand-4"
},
{
"id": 1498401,
"name": "brand-5"
}
]
}Product Brands filter by Name
The brandId information filter by name will be obtained using this service.
HTTP method: GET
PROD
https://apigw.trendyol.com/integration/product/brands/by-name?name={brand-name}
STAGE
https://stageapigw.trendyol.com/integration/product/brands/by-name?name={brand-name}
Query Parameter List
| Parameter | Type |
|---|---|
| name | String |
Sample Service Response
[
{
id: 1584892,
name: "brand-1",
},
];Updated 11 days ago