# Wildberries API - Get Wildberries shop products

## API Overview

- Get all products from Wildberries shop by shop URL
- See More

## API URL

`GET https://api.tmapi.io/wildberries/shop/items`

## Request Parameters

### Query

| Field | Type | Explanation | Required |
| --- | --- | --- | --- |
| shop_url | string | Shop home page link | true |
| page | integer | Page number<br/>Default value: 1 | false |

## Security Auth

> Please go to [Console-Account Center](https://console.tmapi.io/account/center) to get your apiToken.

> Add your apiToken to the request parameters. Please refer to the examples below.

## Request Example

```bash

curl --request GET 'https://api.tmapi.io/wildberries/shop/items?apiToken=xxxxxx&shop_url=https%3A%2F%2Fwww.wildberries.ru%2Fseller%2F1334922&page=1'

```

## Response Example

```json

{
  "code": 200,
  "msg": "success",
  "data": {
    "page": 1,
    "page_size": 50,
    "total": 10716,
    "has_next_page": true,
    "items": [
      {
        "item_id": 397257705,
        "product_url": "https://www.wildberries.ru/catalog/397257705/detail.aspx",
        "title": "Кроссовки Glide",
        "currency": "RUB",
        "brand": "Reebok",
        "brand_id": 777,
        "price_info": {
          "sale_price": "8245.0",
          "origin_price": "14663.0"
        },
        "main_imgs": "https://basket-21.wbbasket.ru/vol3972/part397257/397257705/images/big/1.webp",
        "category_id": 105,
        "shop_info": {
          "shop_name": "JNS",
          "shop_id": 1334922,
          "seller_id": 1334922,
          "shop_rating": 4.6
        },
        "review_info": {
          "rating_star": 4,
          "review_count": 58
        },
        "stock": 38
      },
      {
        "item_id": 488621075,
        "product_url": "https://www.wildberries.ru/catalog/488621075/detail.aspx",
        "title": "Непромокаемые брюки W PROOF-TEX Base Pants",
        "currency": "RUB",
        "brand": "RANK",
        "brand_id": 545200,
        "price_info": {
          "sale_price": "4714.0",
          "origin_price": "8384.0"
        },
        "main_imgs": "https://basket-21.wbbasket.ru/vol4886/part488621/488621075/images/big/1.webp",
        "category_id": 11,
        "shop_info": {
          "shop_name": "JNS",
          "shop_id": 1334922,
          "seller_id": 1334922,
          "shop_rating": 4.6
        },
        "review_info": {
          "rating_star": 5,
          "review_count": 9
        },
        "stock": 17
      },
      {
        "item_id": 456538912,
        "product_url": "https://www.wildberries.ru/catalog/456538912/detail.aspx",
        "title": "Пуховик PROOF-TEX Rev Down Jacket",
        "currency": "RUB",
        "brand": "RANK",
        "brand_id": 545200,
        "price_info": {
          "sale_price": "12398.0",
          "origin_price": "22444.0"
        },
        "main_imgs": "https://basket-21.wbbasket.ru/vol4565/part456538/456538912/images/big/1.webp",
        "category_id": 174,
        "shop_info": {
          "shop_name": "JNS",
          "shop_id": 1334922,
          "seller_id": 1334922,
          "shop_rating": 4.6
        },
        "review_info": {
          "rating_star": 4,
          "review_count": 12
        },
        "stock": 2
      }
    ]
  }
}

```