Skip to main content
POST
/
api
/
n11
/
sellers
/
products
/n11/sellers/products
curl --request POST \
  --url https://api.anysite.io/api/n11/sellers/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "seller": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@n11_search_product",
    "page_id": "<string>",
    "name": "<string>",
    "subtitle": "<string>",
    "brand": "<string>",
    "price": 123,
    "list_price": 123,
    "discount_rate": "<string>",
    "currency": "TRY",
    "image": "<string>",
    "rating": 123,
    "review_count": 123,
    "stock": 123,
    "category": "<string>",
    "category_id": "<string>",
    "seller_id": "<string>",
    "seller_name": "<string>",
    "is_free_shipping": true,
    "is_official_seller": true
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
seller
string
required

N11 seller id, seller alias or a store URL

Minimum string length: 1
Examples:

"60351"

"aksarayiletisim"

"https://www.n11.com/magaza/aksarayiletisim"

count
integer
required

Max number of products to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@n11_search_product
page_id
string | null
name
string | null
subtitle
string | null
brand
string | null
price
number | null
list_price
number | null
discount_rate
string | null
currency
string
default:TRY
image
string | null
rating
number | null
review_count
integer | null
stock
integer | null
category
string | null
category_id
string | null
seller_id
string | null
seller_name
string | null
is_free_shipping
boolean | null
is_official_seller
boolean | null