Skip to main content
POST
/
api
/
n11
/
products
/n11/products
curl --request POST \
  --url https://api.anysite.io/api/n11/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@n11_product",
    "page_id": "<string>",
    "name": "<string>",
    "subtitle": "<string>",
    "brand": "<string>",
    "price": 123,
    "list_price": 123,
    "discount_percentage": 123,
    "currency": "TRY",
    "image": "<string>",
    "images": [],
    "rating": 123,
    "rating_count": 123,
    "review_count": 123,
    "favorite_count": 123,
    "stock": 123,
    "is_in_stock": true,
    "is_free_shipping": true,
    "shipment_city": "<string>",
    "preparation_time": "<string>",
    "category": "<string>",
    "category_id": "<string>",
    "breadcrumbs": [],
    "five_star_count": 123,
    "four_star_count": 123,
    "three_star_count": 123,
    "two_star_count": 123,
    "one_star_count": 123,
    "badges": [],
    "attributes": [],
    "variants": [],
    "seller": {
      "id": "<string>",
      "@type": "@n11_product_seller",
      "name": "<string>",
      "company_name": "<string>",
      "rating": 123,
      "grade": 123,
      "image": "<string>",
      "is_official": true,
      "is_quick_seller": true,
      "feedback_count": 123
    },
    "other_seller_count": 123,
    "other_sellers": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

N11 product page id or a product URL containing it

Minimum string length: 1
Examples:

"43821353"

"https://www.n11.com/urun/apple-iphone-15-128-gb-apple-turkiye-garantili-43821353"

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_product
page_id
string | null
name
string | null
subtitle
string | null
brand
string | null
price
number | null
list_price
number | null
discount_percentage
number | null
currency
string
default:TRY
image
string | null
images
string[]
rating
number | null
rating_count
integer | null
review_count
integer | null
favorite_count
integer | null
stock
integer | null
is_in_stock
boolean | null
is_free_shipping
boolean | null
shipment_city
string | null
preparation_time
string | null
category
string | null
category_id
string | null
breadcrumbs
string[]
five_star_count
integer | null
four_star_count
integer | null
three_star_count
integer | null
two_star_count
integer | null
one_star_count
integer | null
badges
string[]
attributes
N11ProductAttribute · object[]
variants
N11ProductVariant · object[]
seller
N11ProductSeller · object
other_seller_count
integer | null
other_sellers
N11ProductOffer · object[]