Skip to main content
POST
/
api
/
n11
/
products
/
search
/n11/products/search
curl --request POST \
  --url https://api.anysite.io/api/n11/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "NUMARA11",
  "brand": "<string>",
  "min_price": 1,
  "max_price": 1
}
'
[
  {
    "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
keyword
string
required

Search keyword

Minimum string length: 1
count
integer
required

Max number of results to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:NUMARA11

Result sort order

Available options:
NUMARA11,
PRICE_LOW,
PRICE_HIGH,
REVIEWS,
NEWEST
brand
string | null

Filter by brand name

min_price
number | null

Minimum price filter

Required range: x >= 0
max_price
number | null

Maximum price filter

Required range: x >= 0

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