/falabella/products/search
curl --request POST \
--url https://api.anysite.io/api/falabella/products/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 2,
"timeout": 300,
"region": "cl",
"keyword": "<string>",
"category_id": "<string>",
"sort": "recommended",
"brand": "<string>",
"seller_id": "<string>",
"min_price": 1,
"max_price": 1,
"min_discount": 50,
"min_rating": 3,
"free_shipping": true,
"cmr_offer": true
}
'import requests
url = "https://api.anysite.io/api/falabella/products/search"
payload = {
"count": 2,
"timeout": 300,
"region": "cl",
"keyword": "<string>",
"category_id": "<string>",
"sort": "recommended",
"brand": "<string>",
"seller_id": "<string>",
"min_price": 1,
"max_price": 1,
"min_discount": 50,
"min_rating": 3,
"free_shipping": True,
"cmr_offer": True
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
count: 2,
timeout: 300,
region: 'cl',
keyword: '<string>',
category_id: '<string>',
sort: 'recommended',
brand: '<string>',
seller_id: '<string>',
min_price: 1,
max_price: 1,
min_discount: 50,
min_rating: 3,
free_shipping: true,
cmr_offer: true
})
};
fetch('https://api.anysite.io/api/falabella/products/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/falabella/products/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'count' => 2,
'timeout' => 300,
'region' => 'cl',
'keyword' => '<string>',
'category_id' => '<string>',
'sort' => 'recommended',
'brand' => '<string>',
'seller_id' => '<string>',
'min_price' => 1,
'max_price' => 1,
'min_discount' => 50,
'min_rating' => 3,
'free_shipping' => true,
'cmr_offer' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/falabella/products/search"
payload := strings.NewReader("{\n \"count\": 2,\n \"timeout\": 300,\n \"region\": \"cl\",\n \"keyword\": \"<string>\",\n \"category_id\": \"<string>\",\n \"sort\": \"recommended\",\n \"brand\": \"<string>\",\n \"seller_id\": \"<string>\",\n \"min_price\": 1,\n \"max_price\": 1,\n \"min_discount\": 50,\n \"min_rating\": 3,\n \"free_shipping\": true,\n \"cmr_offer\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/falabella/products/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 2,\n \"timeout\": 300,\n \"region\": \"cl\",\n \"keyword\": \"<string>\",\n \"category_id\": \"<string>\",\n \"sort\": \"recommended\",\n \"brand\": \"<string>\",\n \"seller_id\": \"<string>\",\n \"min_price\": 1,\n \"max_price\": 1,\n \"min_discount\": 50,\n \"min_rating\": 3,\n \"free_shipping\": true,\n \"cmr_offer\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/falabella/products/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"count\": 2,\n \"timeout\": 300,\n \"region\": \"cl\",\n \"keyword\": \"<string>\",\n \"category_id\": \"<string>\",\n \"sort\": \"recommended\",\n \"brand\": \"<string>\",\n \"seller_id\": \"<string>\",\n \"min_price\": 1,\n \"max_price\": 1,\n \"min_discount\": 50,\n \"min_rating\": 3,\n \"free_shipping\": true,\n \"cmr_offer\": true\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"@type": "FalabellaSearchProduct",
"sku_id": "<string>",
"name": "<string>",
"brand": "<string>",
"url": "<string>",
"image": "<string>",
"images": [],
"price": 123,
"event_price": 123,
"normal_price": 123,
"currency": "<string>",
"discount_label": "<string>",
"rating": 123,
"review_count": 123,
"seller_id": "<string>",
"seller_name": "<string>",
"offering_id": "<string>",
"category_id": "<string>",
"is_sponsored": false,
"is_best_seller": false,
"is_verified_seller": false
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/falabella
/falabella/products/search
Search Falabella products by keyword or category id, with filters (brand, seller, condition, color, price range, discount, rating, free shipping, CMR offer) and sorting. Returns product cards with id, name, brand, price, rating, seller and image. Use the region field for Chile (cl), Peru (pe) or Colombia (co).
Price: 20 credits per 48 results
POST
/
api
/
falabella
/
products
/
search
/falabella/products/search
curl --request POST \
--url https://api.anysite.io/api/falabella/products/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 2,
"timeout": 300,
"region": "cl",
"keyword": "<string>",
"category_id": "<string>",
"sort": "recommended",
"brand": "<string>",
"seller_id": "<string>",
"min_price": 1,
"max_price": 1,
"min_discount": 50,
"min_rating": 3,
"free_shipping": true,
"cmr_offer": true
}
'import requests
url = "https://api.anysite.io/api/falabella/products/search"
payload = {
"count": 2,
"timeout": 300,
"region": "cl",
"keyword": "<string>",
"category_id": "<string>",
"sort": "recommended",
"brand": "<string>",
"seller_id": "<string>",
"min_price": 1,
"max_price": 1,
"min_discount": 50,
"min_rating": 3,
"free_shipping": True,
"cmr_offer": True
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
count: 2,
timeout: 300,
region: 'cl',
keyword: '<string>',
category_id: '<string>',
sort: 'recommended',
brand: '<string>',
seller_id: '<string>',
min_price: 1,
max_price: 1,
min_discount: 50,
min_rating: 3,
free_shipping: true,
cmr_offer: true
})
};
fetch('https://api.anysite.io/api/falabella/products/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/falabella/products/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'count' => 2,
'timeout' => 300,
'region' => 'cl',
'keyword' => '<string>',
'category_id' => '<string>',
'sort' => 'recommended',
'brand' => '<string>',
'seller_id' => '<string>',
'min_price' => 1,
'max_price' => 1,
'min_discount' => 50,
'min_rating' => 3,
'free_shipping' => true,
'cmr_offer' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/falabella/products/search"
payload := strings.NewReader("{\n \"count\": 2,\n \"timeout\": 300,\n \"region\": \"cl\",\n \"keyword\": \"<string>\",\n \"category_id\": \"<string>\",\n \"sort\": \"recommended\",\n \"brand\": \"<string>\",\n \"seller_id\": \"<string>\",\n \"min_price\": 1,\n \"max_price\": 1,\n \"min_discount\": 50,\n \"min_rating\": 3,\n \"free_shipping\": true,\n \"cmr_offer\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/falabella/products/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 2,\n \"timeout\": 300,\n \"region\": \"cl\",\n \"keyword\": \"<string>\",\n \"category_id\": \"<string>\",\n \"sort\": \"recommended\",\n \"brand\": \"<string>\",\n \"seller_id\": \"<string>\",\n \"min_price\": 1,\n \"max_price\": 1,\n \"min_discount\": 50,\n \"min_rating\": 3,\n \"free_shipping\": true,\n \"cmr_offer\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/falabella/products/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"count\": 2,\n \"timeout\": 300,\n \"region\": \"cl\",\n \"keyword\": \"<string>\",\n \"category_id\": \"<string>\",\n \"sort\": \"recommended\",\n \"brand\": \"<string>\",\n \"seller_id\": \"<string>\",\n \"min_price\": 1,\n \"max_price\": 1,\n \"min_discount\": 50,\n \"min_rating\": 3,\n \"free_shipping\": true,\n \"cmr_offer\": true\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"@type": "FalabellaSearchProduct",
"sku_id": "<string>",
"name": "<string>",
"brand": "<string>",
"url": "<string>",
"image": "<string>",
"images": [],
"price": 123,
"event_price": 123,
"normal_price": 123,
"currency": "<string>",
"discount_label": "<string>",
"rating": 123,
"review_count": 123,
"seller_id": "<string>",
"seller_name": "<string>",
"offering_id": "<string>",
"category_id": "<string>",
"is_sponsored": false,
"is_best_seller": false,
"is_verified_seller": false
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Required range:
x >= 1Required range:
20 <= x <= 1500Available options:
cl, pe, co Available options:
recommended, price_asc, price_desc, best_rated, brand Available options:
new, open_box, refurbished_excellent, refurbished_very_good, refurbished_good Available options:
yellow, blue, beige, white, burgundy, brown, gold, gray, purple, orange, black, silver, red, pink, green Required range:
x >= 0Required range:
x >= 0Required range:
1 <= x <= 100Required range:
1 <= x <= 5Response
Successful Response