Chrono24 Finder Search
curl --request GET \
--url https://piloterr.com/api/v2/finder/chrono24-search \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>"
}
'import requests
url = "https://piloterr.com/api/v2/finder/chrono24-search"
payload = { "query": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.get(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({query: '<string>'})
};
fetch('https://piloterr.com/api/v2/finder/chrono24-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://piloterr.com/api/v2/finder/chrono24-search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://piloterr.com/api/v2/finder/chrono24-search"
payload := strings.NewReader("{\n \"query\": \"<string>\"\n}")
req, _ := http.NewRequest("GET", url, payload)
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.get("https://piloterr.com/api/v2/finder/chrono24-search")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://piloterr.com/api/v2/finder/chrono24-search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body[
{
"id": "dialColor",
"input_type": "Checkbox",
"label": "Dial color",
"searchable": false,
"values": [
{
"label": "Black",
"dial_color": "702"
},
{
"label": "Blue",
"dial_color": "710"
},
{
"label": "Bordeaux",
"dial_color": "711"
},
{
"label": "Bronze",
"dial_color": "712"
},
{
"label": "Brown",
"dial_color": "723"
},
{
"label": "Champagne",
"dial_color": "709"
},
{
"label": "Gold",
"dial_color": "714"
},
{
"label": "Gold (solid)",
"dial_color": "705"
},
{
"label": "Green",
"dial_color": "716"
},
{
"label": "Grey",
"dial_color": "715"
},
{
"label": "Meteorite",
"dial_color": "725"
},
{
"label": "Mother of pearl",
"dial_color": "707"
},
{
"label": "Orange",
"dial_color": "719"
},
{
"label": "Pink",
"dial_color": "722"
},
{
"label": "Purple",
"dial_color": "721"
},
{
"label": "Red",
"dial_color": "720"
},
{
"label": "Silver",
"dial_color": "708"
},
{
"label": "Silver (solid)",
"dial_color": "706"
},
{
"label": "Skeletonized",
"dial_color": "726"
},
{
"label": "Skeletonized",
"dial_color": "704"
},
{
"label": "Turquoise",
"dial_color": "724"
},
{
"label": "White",
"dial_color": "701"
},
{
"label": "Yellow",
"dial_color": "713"
},
{
"label": "No details",
"dial_color": "0"
}
]
},
{
"id": "dial_color",
"label": "Dial color",
"searchable": false,
"values": [
{
"label": "Black",
"dial_color": "702"
},
{
"label": "Blue",
"dial_color": "710"
},
{
"label": "Bordeaux",
"dial_color": "711"
},
{
"label": "Bronze",
"dial_color": "712"
},
{
"label": "Brown",
"dial_color": "723"
},
{
"label": "Champagne",
"dial_color": "709"
},
{
"label": "Gold",
"dial_color": "714"
},
{
"label": "Gold (solid)",
"dial_color": "705"
},
{
"label": "Green",
"dial_color": "716"
},
{
"label": "Grey",
"dial_color": "715"
},
{
"label": "Meteorite",
"dial_color": "725"
},
{
"label": "Mother of pearl",
"dial_color": "707"
},
{
"label": "Orange",
"dial_color": "719"
},
{
"label": "Pink",
"dial_color": "722"
},
{
"label": "Purple",
"dial_color": "721"
},
{
"label": "Red",
"dial_color": "720"
},
{
"label": "Silver",
"dial_color": "708"
},
{
"label": "Silver (solid)",
"dial_color": "706"
},
{
"label": "Skeletonized",
"dial_color": "726"
},
{
"label": "Skeletonized",
"dial_color": "704"
},
{
"label": "Turquoise",
"dial_color": "724"
},
{
"label": "White",
"dial_color": "701"
},
{
"label": "Yellow",
"dial_color": "713"
},
{
"label": "No details",
"dial_color": "0"
}
],
"filterGroupId": "dialColor",
"inputType": "Checkbox"
}
]
Finder
Chrono24 Finder Search
This endpoint allows users to search for attributes related to Chrono24.
GET
/
api
/
v2
/
finder
/
chrono24-search
Chrono24 Finder Search
curl --request GET \
--url https://piloterr.com/api/v2/finder/chrono24-search \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>"
}
'import requests
url = "https://piloterr.com/api/v2/finder/chrono24-search"
payload = { "query": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.get(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({query: '<string>'})
};
fetch('https://piloterr.com/api/v2/finder/chrono24-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://piloterr.com/api/v2/finder/chrono24-search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://piloterr.com/api/v2/finder/chrono24-search"
payload := strings.NewReader("{\n \"query\": \"<string>\"\n}")
req, _ := http.NewRequest("GET", url, payload)
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.get("https://piloterr.com/api/v2/finder/chrono24-search")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://piloterr.com/api/v2/finder/chrono24-search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body[
{
"id": "dialColor",
"input_type": "Checkbox",
"label": "Dial color",
"searchable": false,
"values": [
{
"label": "Black",
"dial_color": "702"
},
{
"label": "Blue",
"dial_color": "710"
},
{
"label": "Bordeaux",
"dial_color": "711"
},
{
"label": "Bronze",
"dial_color": "712"
},
{
"label": "Brown",
"dial_color": "723"
},
{
"label": "Champagne",
"dial_color": "709"
},
{
"label": "Gold",
"dial_color": "714"
},
{
"label": "Gold (solid)",
"dial_color": "705"
},
{
"label": "Green",
"dial_color": "716"
},
{
"label": "Grey",
"dial_color": "715"
},
{
"label": "Meteorite",
"dial_color": "725"
},
{
"label": "Mother of pearl",
"dial_color": "707"
},
{
"label": "Orange",
"dial_color": "719"
},
{
"label": "Pink",
"dial_color": "722"
},
{
"label": "Purple",
"dial_color": "721"
},
{
"label": "Red",
"dial_color": "720"
},
{
"label": "Silver",
"dial_color": "708"
},
{
"label": "Silver (solid)",
"dial_color": "706"
},
{
"label": "Skeletonized",
"dial_color": "726"
},
{
"label": "Skeletonized",
"dial_color": "704"
},
{
"label": "Turquoise",
"dial_color": "724"
},
{
"label": "White",
"dial_color": "701"
},
{
"label": "Yellow",
"dial_color": "713"
},
{
"label": "No details",
"dial_color": "0"
}
]
},
{
"id": "dial_color",
"label": "Dial color",
"searchable": false,
"values": [
{
"label": "Black",
"dial_color": "702"
},
{
"label": "Blue",
"dial_color": "710"
},
{
"label": "Bordeaux",
"dial_color": "711"
},
{
"label": "Bronze",
"dial_color": "712"
},
{
"label": "Brown",
"dial_color": "723"
},
{
"label": "Champagne",
"dial_color": "709"
},
{
"label": "Gold",
"dial_color": "714"
},
{
"label": "Gold (solid)",
"dial_color": "705"
},
{
"label": "Green",
"dial_color": "716"
},
{
"label": "Grey",
"dial_color": "715"
},
{
"label": "Meteorite",
"dial_color": "725"
},
{
"label": "Mother of pearl",
"dial_color": "707"
},
{
"label": "Orange",
"dial_color": "719"
},
{
"label": "Pink",
"dial_color": "722"
},
{
"label": "Purple",
"dial_color": "721"
},
{
"label": "Red",
"dial_color": "720"
},
{
"label": "Silver",
"dial_color": "708"
},
{
"label": "Silver (solid)",
"dial_color": "706"
},
{
"label": "Skeletonized",
"dial_color": "726"
},
{
"label": "Skeletonized",
"dial_color": "704"
},
{
"label": "Turquoise",
"dial_color": "724"
},
{
"label": "White",
"dial_color": "701"
},
{
"label": "Yellow",
"dial_color": "713"
},
{
"label": "No details",
"dial_color": "0"
}
],
"filterGroupId": "dialColor",
"inputType": "Checkbox"
}
]
Search Query
This parameter filters attributes based on a search string. The search is non-case-sensitive and returns all attributes whose names contain the specified string.
Response
Hide Filter Object
Hide Filter Object
The unique identifier of the filter group (e.g., “dialColor”, “dialNumbers”)
The type of input for the filter (e.g., “Checkbox”, “IllustrationCheckbox”)
The display label for the filter group
Whether the filter group is searchable
The group identifier for the filter (may match id)
Alternative property for input type (may match input_type)
[
{
"id": "dialColor",
"input_type": "Checkbox",
"label": "Dial color",
"searchable": false,
"values": [
{
"label": "Black",
"dial_color": "702"
},
{
"label": "Blue",
"dial_color": "710"
},
{
"label": "Bordeaux",
"dial_color": "711"
},
{
"label": "Bronze",
"dial_color": "712"
},
{
"label": "Brown",
"dial_color": "723"
},
{
"label": "Champagne",
"dial_color": "709"
},
{
"label": "Gold",
"dial_color": "714"
},
{
"label": "Gold (solid)",
"dial_color": "705"
},
{
"label": "Green",
"dial_color": "716"
},
{
"label": "Grey",
"dial_color": "715"
},
{
"label": "Meteorite",
"dial_color": "725"
},
{
"label": "Mother of pearl",
"dial_color": "707"
},
{
"label": "Orange",
"dial_color": "719"
},
{
"label": "Pink",
"dial_color": "722"
},
{
"label": "Purple",
"dial_color": "721"
},
{
"label": "Red",
"dial_color": "720"
},
{
"label": "Silver",
"dial_color": "708"
},
{
"label": "Silver (solid)",
"dial_color": "706"
},
{
"label": "Skeletonized",
"dial_color": "726"
},
{
"label": "Skeletonized",
"dial_color": "704"
},
{
"label": "Turquoise",
"dial_color": "724"
},
{
"label": "White",
"dial_color": "701"
},
{
"label": "Yellow",
"dial_color": "713"
},
{
"label": "No details",
"dial_color": "0"
}
]
},
{
"id": "dial_color",
"label": "Dial color",
"searchable": false,
"values": [
{
"label": "Black",
"dial_color": "702"
},
{
"label": "Blue",
"dial_color": "710"
},
{
"label": "Bordeaux",
"dial_color": "711"
},
{
"label": "Bronze",
"dial_color": "712"
},
{
"label": "Brown",
"dial_color": "723"
},
{
"label": "Champagne",
"dial_color": "709"
},
{
"label": "Gold",
"dial_color": "714"
},
{
"label": "Gold (solid)",
"dial_color": "705"
},
{
"label": "Green",
"dial_color": "716"
},
{
"label": "Grey",
"dial_color": "715"
},
{
"label": "Meteorite",
"dial_color": "725"
},
{
"label": "Mother of pearl",
"dial_color": "707"
},
{
"label": "Orange",
"dial_color": "719"
},
{
"label": "Pink",
"dial_color": "722"
},
{
"label": "Purple",
"dial_color": "721"
},
{
"label": "Red",
"dial_color": "720"
},
{
"label": "Silver",
"dial_color": "708"
},
{
"label": "Silver (solid)",
"dial_color": "706"
},
{
"label": "Skeletonized",
"dial_color": "726"
},
{
"label": "Skeletonized",
"dial_color": "704"
},
{
"label": "Turquoise",
"dial_color": "724"
},
{
"label": "White",
"dial_color": "701"
},
{
"label": "Yellow",
"dial_color": "713"
},
{
"label": "No details",
"dial_color": "0"
}
],
"filterGroupId": "dialColor",
"inputType": "Checkbox"
}
]
Was this page helpful?
⌘I

