/gumtree/listings/search
curl --request POST \
--url https://api.anysite.io/api/gumtree/listings/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 2,
"timeout": 300,
"keyword": "<string>",
"search_category": "<string>",
"search_location": "<string>",
"seller_type": [],
"min_price": 1,
"max_price": 1,
"has_photos": false,
"is_urgent": false,
"is_featured": false,
"search_in_description": false,
"condition": [],
"delivery_available": false,
"vehicle_model": [
"<string>"
],
"vehicle_body_type": [],
"vehicle_fuel_type": [],
"vehicle_transmission": [],
"vehicle_colour": [],
"vehicle_doors": [
123
],
"vehicle_seats": [
123
],
"min_vehicle_registration_year": 1901,
"max_vehicle_registration_year": 1901,
"min_vehicle_mileage": 1,
"max_vehicle_mileage": 1,
"min_vehicle_engine_size": 1,
"max_vehicle_engine_size": 1,
"property_type": [],
"min_bedrooms": 1,
"max_bedrooms": 1,
"all_bills_included": false,
"council_tax_included": false,
"pets_allowed": false,
"job_contract_type": [],
"job_hours": [],
"job_level": [],
"job_language": [],
"recruiter_type": [],
"is_course": false,
"min_salary": 1,
"max_salary": 1
}
'import requests
url = "https://api.anysite.io/api/gumtree/listings/search"
payload = {
"count": 2,
"timeout": 300,
"keyword": "<string>",
"search_category": "<string>",
"search_location": "<string>",
"seller_type": [],
"min_price": 1,
"max_price": 1,
"has_photos": False,
"is_urgent": False,
"is_featured": False,
"search_in_description": False,
"condition": [],
"delivery_available": False,
"vehicle_model": ["<string>"],
"vehicle_body_type": [],
"vehicle_fuel_type": [],
"vehicle_transmission": [],
"vehicle_colour": [],
"vehicle_doors": [123],
"vehicle_seats": [123],
"min_vehicle_registration_year": 1901,
"max_vehicle_registration_year": 1901,
"min_vehicle_mileage": 1,
"max_vehicle_mileage": 1,
"min_vehicle_engine_size": 1,
"max_vehicle_engine_size": 1,
"property_type": [],
"min_bedrooms": 1,
"max_bedrooms": 1,
"all_bills_included": False,
"council_tax_included": False,
"pets_allowed": False,
"job_contract_type": [],
"job_hours": [],
"job_level": [],
"job_language": [],
"recruiter_type": [],
"is_course": False,
"min_salary": 1,
"max_salary": 1
}
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,
keyword: '<string>',
search_category: '<string>',
search_location: '<string>',
seller_type: [],
min_price: 1,
max_price: 1,
has_photos: false,
is_urgent: false,
is_featured: false,
search_in_description: false,
condition: [],
delivery_available: false,
vehicle_model: ['<string>'],
vehicle_body_type: [],
vehicle_fuel_type: [],
vehicle_transmission: [],
vehicle_colour: [],
vehicle_doors: [123],
vehicle_seats: [123],
min_vehicle_registration_year: 1901,
max_vehicle_registration_year: 1901,
min_vehicle_mileage: 1,
max_vehicle_mileage: 1,
min_vehicle_engine_size: 1,
max_vehicle_engine_size: 1,
property_type: [],
min_bedrooms: 1,
max_bedrooms: 1,
all_bills_included: false,
council_tax_included: false,
pets_allowed: false,
job_contract_type: [],
job_hours: [],
job_level: [],
job_language: [],
recruiter_type: [],
is_course: false,
min_salary: 1,
max_salary: 1
})
};
fetch('https://api.anysite.io/api/gumtree/listings/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/gumtree/listings/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,
'keyword' => '<string>',
'search_category' => '<string>',
'search_location' => '<string>',
'seller_type' => [
],
'min_price' => 1,
'max_price' => 1,
'has_photos' => false,
'is_urgent' => false,
'is_featured' => false,
'search_in_description' => false,
'condition' => [
],
'delivery_available' => false,
'vehicle_model' => [
'<string>'
],
'vehicle_body_type' => [
],
'vehicle_fuel_type' => [
],
'vehicle_transmission' => [
],
'vehicle_colour' => [
],
'vehicle_doors' => [
123
],
'vehicle_seats' => [
123
],
'min_vehicle_registration_year' => 1901,
'max_vehicle_registration_year' => 1901,
'min_vehicle_mileage' => 1,
'max_vehicle_mileage' => 1,
'min_vehicle_engine_size' => 1,
'max_vehicle_engine_size' => 1,
'property_type' => [
],
'min_bedrooms' => 1,
'max_bedrooms' => 1,
'all_bills_included' => false,
'council_tax_included' => false,
'pets_allowed' => false,
'job_contract_type' => [
],
'job_hours' => [
],
'job_level' => [
],
'job_language' => [
],
'recruiter_type' => [
],
'is_course' => false,
'min_salary' => 1,
'max_salary' => 1
]),
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/gumtree/listings/search"
payload := strings.NewReader("{\n \"count\": 2,\n \"timeout\": 300,\n \"keyword\": \"<string>\",\n \"search_category\": \"<string>\",\n \"search_location\": \"<string>\",\n \"seller_type\": [],\n \"min_price\": 1,\n \"max_price\": 1,\n \"has_photos\": false,\n \"is_urgent\": false,\n \"is_featured\": false,\n \"search_in_description\": false,\n \"condition\": [],\n \"delivery_available\": false,\n \"vehicle_model\": [\n \"<string>\"\n ],\n \"vehicle_body_type\": [],\n \"vehicle_fuel_type\": [],\n \"vehicle_transmission\": [],\n \"vehicle_colour\": [],\n \"vehicle_doors\": [\n 123\n ],\n \"vehicle_seats\": [\n 123\n ],\n \"min_vehicle_registration_year\": 1901,\n \"max_vehicle_registration_year\": 1901,\n \"min_vehicle_mileage\": 1,\n \"max_vehicle_mileage\": 1,\n \"min_vehicle_engine_size\": 1,\n \"max_vehicle_engine_size\": 1,\n \"property_type\": [],\n \"min_bedrooms\": 1,\n \"max_bedrooms\": 1,\n \"all_bills_included\": false,\n \"council_tax_included\": false,\n \"pets_allowed\": false,\n \"job_contract_type\": [],\n \"job_hours\": [],\n \"job_level\": [],\n \"job_language\": [],\n \"recruiter_type\": [],\n \"is_course\": false,\n \"min_salary\": 1,\n \"max_salary\": 1\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/gumtree/listings/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 2,\n \"timeout\": 300,\n \"keyword\": \"<string>\",\n \"search_category\": \"<string>\",\n \"search_location\": \"<string>\",\n \"seller_type\": [],\n \"min_price\": 1,\n \"max_price\": 1,\n \"has_photos\": false,\n \"is_urgent\": false,\n \"is_featured\": false,\n \"search_in_description\": false,\n \"condition\": [],\n \"delivery_available\": false,\n \"vehicle_model\": [\n \"<string>\"\n ],\n \"vehicle_body_type\": [],\n \"vehicle_fuel_type\": [],\n \"vehicle_transmission\": [],\n \"vehicle_colour\": [],\n \"vehicle_doors\": [\n 123\n ],\n \"vehicle_seats\": [\n 123\n ],\n \"min_vehicle_registration_year\": 1901,\n \"max_vehicle_registration_year\": 1901,\n \"min_vehicle_mileage\": 1,\n \"max_vehicle_mileage\": 1,\n \"min_vehicle_engine_size\": 1,\n \"max_vehicle_engine_size\": 1,\n \"property_type\": [],\n \"min_bedrooms\": 1,\n \"max_bedrooms\": 1,\n \"all_bills_included\": false,\n \"council_tax_included\": false,\n \"pets_allowed\": false,\n \"job_contract_type\": [],\n \"job_hours\": [],\n \"job_level\": [],\n \"job_language\": [],\n \"recruiter_type\": [],\n \"is_course\": false,\n \"min_salary\": 1,\n \"max_salary\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/gumtree/listings/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 \"keyword\": \"<string>\",\n \"search_category\": \"<string>\",\n \"search_location\": \"<string>\",\n \"seller_type\": [],\n \"min_price\": 1,\n \"max_price\": 1,\n \"has_photos\": false,\n \"is_urgent\": false,\n \"is_featured\": false,\n \"search_in_description\": false,\n \"condition\": [],\n \"delivery_available\": false,\n \"vehicle_model\": [\n \"<string>\"\n ],\n \"vehicle_body_type\": [],\n \"vehicle_fuel_type\": [],\n \"vehicle_transmission\": [],\n \"vehicle_colour\": [],\n \"vehicle_doors\": [\n 123\n ],\n \"vehicle_seats\": [\n 123\n ],\n \"min_vehicle_registration_year\": 1901,\n \"max_vehicle_registration_year\": 1901,\n \"min_vehicle_mileage\": 1,\n \"max_vehicle_mileage\": 1,\n \"min_vehicle_engine_size\": 1,\n \"max_vehicle_engine_size\": 1,\n \"property_type\": [],\n \"min_bedrooms\": 1,\n \"max_bedrooms\": 1,\n \"all_bills_included\": false,\n \"council_tax_included\": false,\n \"pets_allowed\": false,\n \"job_contract_type\": [],\n \"job_hours\": [],\n \"job_level\": [],\n \"job_language\": [],\n \"recruiter_type\": [],\n \"is_course\": false,\n \"min_salary\": 1,\n \"max_salary\": 1\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"url": "<string>",
"@type": "GumtreeAdCard",
"price": 123,
"currency": "GBP",
"city": "<string>",
"region": "<string>",
"distance": "<string>",
"posted_at": 123,
"status": "<string>",
"category_id": "<string>",
"is_featured": false,
"is_urgent": false,
"is_standout": false,
"is_premium": false,
"has_video": false,
"seller_id": "<string>",
"is_pro_seller": false,
"favourite_count": 123,
"attributes": {},
"image": "<string>",
"images": [],
"image_count": 123
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/gumtree
/gumtree/listings/search
Search Gumtree ads across every section (For Sale, Motors, Property, Jobs, Pets, Services, Community): for each result returns title, price, location, posting date, promotion flags, seller and images. Supports keyword, category, location and radius plus section-specific filters for vehicles, property and jobs.
Price: 20 credits per 30 results
POST
/
api
/
gumtree
/
listings
/
search
/gumtree/listings/search
curl --request POST \
--url https://api.anysite.io/api/gumtree/listings/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 2,
"timeout": 300,
"keyword": "<string>",
"search_category": "<string>",
"search_location": "<string>",
"seller_type": [],
"min_price": 1,
"max_price": 1,
"has_photos": false,
"is_urgent": false,
"is_featured": false,
"search_in_description": false,
"condition": [],
"delivery_available": false,
"vehicle_model": [
"<string>"
],
"vehicle_body_type": [],
"vehicle_fuel_type": [],
"vehicle_transmission": [],
"vehicle_colour": [],
"vehicle_doors": [
123
],
"vehicle_seats": [
123
],
"min_vehicle_registration_year": 1901,
"max_vehicle_registration_year": 1901,
"min_vehicle_mileage": 1,
"max_vehicle_mileage": 1,
"min_vehicle_engine_size": 1,
"max_vehicle_engine_size": 1,
"property_type": [],
"min_bedrooms": 1,
"max_bedrooms": 1,
"all_bills_included": false,
"council_tax_included": false,
"pets_allowed": false,
"job_contract_type": [],
"job_hours": [],
"job_level": [],
"job_language": [],
"recruiter_type": [],
"is_course": false,
"min_salary": 1,
"max_salary": 1
}
'import requests
url = "https://api.anysite.io/api/gumtree/listings/search"
payload = {
"count": 2,
"timeout": 300,
"keyword": "<string>",
"search_category": "<string>",
"search_location": "<string>",
"seller_type": [],
"min_price": 1,
"max_price": 1,
"has_photos": False,
"is_urgent": False,
"is_featured": False,
"search_in_description": False,
"condition": [],
"delivery_available": False,
"vehicle_model": ["<string>"],
"vehicle_body_type": [],
"vehicle_fuel_type": [],
"vehicle_transmission": [],
"vehicle_colour": [],
"vehicle_doors": [123],
"vehicle_seats": [123],
"min_vehicle_registration_year": 1901,
"max_vehicle_registration_year": 1901,
"min_vehicle_mileage": 1,
"max_vehicle_mileage": 1,
"min_vehicle_engine_size": 1,
"max_vehicle_engine_size": 1,
"property_type": [],
"min_bedrooms": 1,
"max_bedrooms": 1,
"all_bills_included": False,
"council_tax_included": False,
"pets_allowed": False,
"job_contract_type": [],
"job_hours": [],
"job_level": [],
"job_language": [],
"recruiter_type": [],
"is_course": False,
"min_salary": 1,
"max_salary": 1
}
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,
keyword: '<string>',
search_category: '<string>',
search_location: '<string>',
seller_type: [],
min_price: 1,
max_price: 1,
has_photos: false,
is_urgent: false,
is_featured: false,
search_in_description: false,
condition: [],
delivery_available: false,
vehicle_model: ['<string>'],
vehicle_body_type: [],
vehicle_fuel_type: [],
vehicle_transmission: [],
vehicle_colour: [],
vehicle_doors: [123],
vehicle_seats: [123],
min_vehicle_registration_year: 1901,
max_vehicle_registration_year: 1901,
min_vehicle_mileage: 1,
max_vehicle_mileage: 1,
min_vehicle_engine_size: 1,
max_vehicle_engine_size: 1,
property_type: [],
min_bedrooms: 1,
max_bedrooms: 1,
all_bills_included: false,
council_tax_included: false,
pets_allowed: false,
job_contract_type: [],
job_hours: [],
job_level: [],
job_language: [],
recruiter_type: [],
is_course: false,
min_salary: 1,
max_salary: 1
})
};
fetch('https://api.anysite.io/api/gumtree/listings/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/gumtree/listings/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,
'keyword' => '<string>',
'search_category' => '<string>',
'search_location' => '<string>',
'seller_type' => [
],
'min_price' => 1,
'max_price' => 1,
'has_photos' => false,
'is_urgent' => false,
'is_featured' => false,
'search_in_description' => false,
'condition' => [
],
'delivery_available' => false,
'vehicle_model' => [
'<string>'
],
'vehicle_body_type' => [
],
'vehicle_fuel_type' => [
],
'vehicle_transmission' => [
],
'vehicle_colour' => [
],
'vehicle_doors' => [
123
],
'vehicle_seats' => [
123
],
'min_vehicle_registration_year' => 1901,
'max_vehicle_registration_year' => 1901,
'min_vehicle_mileage' => 1,
'max_vehicle_mileage' => 1,
'min_vehicle_engine_size' => 1,
'max_vehicle_engine_size' => 1,
'property_type' => [
],
'min_bedrooms' => 1,
'max_bedrooms' => 1,
'all_bills_included' => false,
'council_tax_included' => false,
'pets_allowed' => false,
'job_contract_type' => [
],
'job_hours' => [
],
'job_level' => [
],
'job_language' => [
],
'recruiter_type' => [
],
'is_course' => false,
'min_salary' => 1,
'max_salary' => 1
]),
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/gumtree/listings/search"
payload := strings.NewReader("{\n \"count\": 2,\n \"timeout\": 300,\n \"keyword\": \"<string>\",\n \"search_category\": \"<string>\",\n \"search_location\": \"<string>\",\n \"seller_type\": [],\n \"min_price\": 1,\n \"max_price\": 1,\n \"has_photos\": false,\n \"is_urgent\": false,\n \"is_featured\": false,\n \"search_in_description\": false,\n \"condition\": [],\n \"delivery_available\": false,\n \"vehicle_model\": [\n \"<string>\"\n ],\n \"vehicle_body_type\": [],\n \"vehicle_fuel_type\": [],\n \"vehicle_transmission\": [],\n \"vehicle_colour\": [],\n \"vehicle_doors\": [\n 123\n ],\n \"vehicle_seats\": [\n 123\n ],\n \"min_vehicle_registration_year\": 1901,\n \"max_vehicle_registration_year\": 1901,\n \"min_vehicle_mileage\": 1,\n \"max_vehicle_mileage\": 1,\n \"min_vehicle_engine_size\": 1,\n \"max_vehicle_engine_size\": 1,\n \"property_type\": [],\n \"min_bedrooms\": 1,\n \"max_bedrooms\": 1,\n \"all_bills_included\": false,\n \"council_tax_included\": false,\n \"pets_allowed\": false,\n \"job_contract_type\": [],\n \"job_hours\": [],\n \"job_level\": [],\n \"job_language\": [],\n \"recruiter_type\": [],\n \"is_course\": false,\n \"min_salary\": 1,\n \"max_salary\": 1\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/gumtree/listings/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 2,\n \"timeout\": 300,\n \"keyword\": \"<string>\",\n \"search_category\": \"<string>\",\n \"search_location\": \"<string>\",\n \"seller_type\": [],\n \"min_price\": 1,\n \"max_price\": 1,\n \"has_photos\": false,\n \"is_urgent\": false,\n \"is_featured\": false,\n \"search_in_description\": false,\n \"condition\": [],\n \"delivery_available\": false,\n \"vehicle_model\": [\n \"<string>\"\n ],\n \"vehicle_body_type\": [],\n \"vehicle_fuel_type\": [],\n \"vehicle_transmission\": [],\n \"vehicle_colour\": [],\n \"vehicle_doors\": [\n 123\n ],\n \"vehicle_seats\": [\n 123\n ],\n \"min_vehicle_registration_year\": 1901,\n \"max_vehicle_registration_year\": 1901,\n \"min_vehicle_mileage\": 1,\n \"max_vehicle_mileage\": 1,\n \"min_vehicle_engine_size\": 1,\n \"max_vehicle_engine_size\": 1,\n \"property_type\": [],\n \"min_bedrooms\": 1,\n \"max_bedrooms\": 1,\n \"all_bills_included\": false,\n \"council_tax_included\": false,\n \"pets_allowed\": false,\n \"job_contract_type\": [],\n \"job_hours\": [],\n \"job_level\": [],\n \"job_language\": [],\n \"recruiter_type\": [],\n \"is_course\": false,\n \"min_salary\": 1,\n \"max_salary\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/gumtree/listings/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 \"keyword\": \"<string>\",\n \"search_category\": \"<string>\",\n \"search_location\": \"<string>\",\n \"seller_type\": [],\n \"min_price\": 1,\n \"max_price\": 1,\n \"has_photos\": false,\n \"is_urgent\": false,\n \"is_featured\": false,\n \"search_in_description\": false,\n \"condition\": [],\n \"delivery_available\": false,\n \"vehicle_model\": [\n \"<string>\"\n ],\n \"vehicle_body_type\": [],\n \"vehicle_fuel_type\": [],\n \"vehicle_transmission\": [],\n \"vehicle_colour\": [],\n \"vehicle_doors\": [\n 123\n ],\n \"vehicle_seats\": [\n 123\n ],\n \"min_vehicle_registration_year\": 1901,\n \"max_vehicle_registration_year\": 1901,\n \"min_vehicle_mileage\": 1,\n \"max_vehicle_mileage\": 1,\n \"min_vehicle_engine_size\": 1,\n \"max_vehicle_engine_size\": 1,\n \"property_type\": [],\n \"min_bedrooms\": 1,\n \"max_bedrooms\": 1,\n \"all_bills_included\": false,\n \"council_tax_included\": false,\n \"pets_allowed\": false,\n \"job_contract_type\": [],\n \"job_hours\": [],\n \"job_level\": [],\n \"job_language\": [],\n \"recruiter_type\": [],\n \"is_course\": false,\n \"min_salary\": 1,\n \"max_salary\": 1\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"url": "<string>",
"@type": "GumtreeAdCard",
"price": 123,
"currency": "GBP",
"city": "<string>",
"region": "<string>",
"distance": "<string>",
"posted_at": 123,
"status": "<string>",
"category_id": "<string>",
"is_featured": false,
"is_urgent": false,
"is_standout": false,
"is_premium": false,
"has_video": false,
"seller_id": "<string>",
"is_pro_seller": false,
"favourite_count": 123,
"attributes": {},
"image": "<string>",
"images": [],
"image_count": 123
}
]{
"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 <= 1500Minimum string length:
1Minimum string length:
1Minimum string length:
1Available options:
1, 3, 5, 10, 15, 30, 50, 75, 100, 1000 Available options:
relevance, date, price_lowest_first, price_highest_first, distance Available options:
trade, private Required range:
x >= 0Required range:
x >= 0Available options:
new, as_good_as_new, good, fair Available options:
abarth, ac, aixam, alfa_romeo, aston_martin, audi, austin, bedford, bentley, bmc, bmw, byd, cadillac, caterham, chery, chevrolet, chrysler, citroen, cupra, dacia, daewoo, daf_trucks, daihatsu, daimler, dodge, ds, ferrari, fiat, ford, genesis, great_wall, honda, hummer, hyundai, ineos, infiniti, isuzu, isuzu_trucks, iveco, jaecoo, jaguar, jeep, kgm, kia, ktm, lamborghini, land_rover, ldv, leapmotor, levc, lexus, lotus, lti, man, marcos, marlin, maserati, maxus, maybach, mazda, mclaren, mercedes_benz, mg, mg_motor_uk, microcar, mini, mitsubishi, mitsubishi_fuso, morgan, nissan, omoda, opel, perodua, peugeot, piaggio, polestar, porsche, proton, reliant, renault, renault_trucks, rolls_royce, rover, saab, scania, seat, skoda, smart, ssangyong, subaru, suzuki, talbot, tesla, toyota, tvr, vauxhall, volkswagen, volvo, westfield, other_manufacturer Available options:
car_derived_van, convertible, coupe, estate, hatchback, light_4x4_utility, minibus, motor_caravan, mpv, panel_van, pick_up, saloon, sports, window_van, other Available options:
diesel, electric, gas, gas_bi_fuel, hybrid_electric, petrol, petrol_gas, other Available options:
automatic, manual, semi_auto, other Available options:
biege, black, blue, bronze, brown, cream, gold, green, grey, maroon, mauve, multi_coloured, orange, pink, purple, red, silver, white, yellow, other Available options:
over_30, over_40, over_50, over_60 Required range:
x >= 1900Required range:
x >= 1900Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Available options:
flat, house, other Required range:
x >= 0Required range:
x >= 0Available options:
cashinhand, contract, freelance, locum, permanent, selfemployed, subcontractor, voluntary Available options:
evening, full_time, morning, nights, part_time, saturday_job, term-time, weekends Available options:
apprenticeship, experienced, graduate, internship, management Available options:
arabic, filipino, english, french, german, greek, hindi, italian, polish, romanian, spanish, swedish, thai, turkish, urdu Available options:
direct, agency Required range:
x >= 0Required range:
x >= 0Response
Successful Response
Show child attributes
Show child attributes