Search properties
curl --request GET \
--url https://api.tic.io/search/properties/se \
--header 'x-api-key: <api-key>'import requests
url = "https://api.tic.io/search/properties/se"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.tic.io/search/properties/se', 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.tic.io/search/properties/se",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <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"
"net/http"
"io"
)
func main() {
url := "https://api.tic.io/search/properties/se"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tic.io/search/properties/se")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tic.io/search/properties/se")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"facet_counts": [
{
"counts": [
{
"count": 123,
"highlighted": "<string>",
"value": "<string>"
}
],
"field_name": "<string>",
"sampled": true,
"stats": {
"total_values": 123
},
"localizedFieldName": "<string>"
}
],
"found": 123,
"hits": [
{
"document": {
"id": "<string>",
"propertyId": 123,
"propertyDesignation": "<string>",
"propertySlug": "<string>",
"buildingNames": [
"<string>"
],
"centroidArea1": [
123
],
"municipalityCode": 123,
"countyCode": 123,
"landArea": 123,
"waterArea": 123,
"totalArea": 123,
"streetAddress": "<string>",
"postalCode": 123,
"city": "<string>",
"buildingTypes": [
"<string>"
],
"buildingPurposes": [
"<string>"
],
"numberOfAreas": 123,
"areas": [
{
"areaId": 123,
"surface": [
[
[
123
]
]
],
"centroid": [
123
]
}
],
"lastOwnerRegistrationDate": 123,
"owners": [
{
"companyId": 123,
"personId": 123,
"numerator": 123,
"denominator": 123,
"registrationDate": 123
}
],
"numberOfBuildings": 123,
"numberOfAddresses": 123,
"safetyShelterNumbers": [
"<string>"
],
"taxationCode": 123,
"taxationValue": 123,
"taxationYear": 123,
"taxationProperties": [
"<string>"
],
"taxationValueParts": [
{
"part": "<string>",
"amount": 123
}
]
},
"geo_distance_meters": null,
"highlight": null,
"highlights": [
{
"field": "<string>",
"matched_tokens": [
"<string>"
],
"snippet": "<string>"
}
],
"text_match": 123,
"text_match_info": {
"best_field_score": "<string>",
"best_field_weight": 123,
"fields_matched": 123,
"num_tokens_dropped": 123,
"score": "<string>",
"tokens_matched": 123,
"typo_prefix_score": 123
}
}
],
"grouped_hits": {
"group_key": [
"<string>"
],
"hits": [
{
"document": {
"id": "<string>",
"propertyId": 123,
"propertyDesignation": "<string>",
"propertySlug": "<string>",
"buildingNames": [
"<string>"
],
"centroidArea1": [
123
],
"municipalityCode": 123,
"countyCode": 123,
"landArea": 123,
"waterArea": 123,
"totalArea": 123,
"streetAddress": "<string>",
"postalCode": 123,
"city": "<string>",
"buildingTypes": [
"<string>"
],
"buildingPurposes": [
"<string>"
],
"numberOfAreas": 123,
"areas": [
{
"areaId": 123,
"surface": [
[
[
123
]
]
],
"centroid": [
123
]
}
],
"lastOwnerRegistrationDate": 123,
"owners": [
{
"companyId": 123,
"personId": 123,
"numerator": 123,
"denominator": 123,
"registrationDate": 123
}
],
"numberOfBuildings": 123,
"numberOfAddresses": 123,
"safetyShelterNumbers": [
"<string>"
],
"taxationCode": 123,
"taxationValue": 123,
"taxationYear": 123,
"taxationProperties": [
"<string>"
],
"taxationValueParts": [
{
"part": "<string>",
"amount": 123
}
]
},
"geo_distance_meters": null,
"highlight": null,
"highlights": [
{
"field": "<string>",
"matched_tokens": [
"<string>"
],
"snippet": "<string>"
}
],
"text_match": 123,
"text_match_info": {
"best_field_score": "<string>",
"best_field_weight": 123,
"fields_matched": 123,
"num_tokens_dropped": 123,
"score": "<string>",
"tokens_matched": 123,
"typo_prefix_score": 123
}
}
]
},
"out_of": 123,
"page": 123,
"request_params": {
"collection_name": "<string>",
"first_q": "<string>",
"per_page": 123,
"q": "<string>"
},
"search_cutoff": true,
"search_time_ms": 123
}Search
Search properties
Search properties in our lightning-fast memory database
GET
/
search
/
properties
/
se
Search properties
curl --request GET \
--url https://api.tic.io/search/properties/se \
--header 'x-api-key: <api-key>'import requests
url = "https://api.tic.io/search/properties/se"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.tic.io/search/properties/se', 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.tic.io/search/properties/se",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <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"
"net/http"
"io"
)
func main() {
url := "https://api.tic.io/search/properties/se"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tic.io/search/properties/se")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tic.io/search/properties/se")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"facet_counts": [
{
"counts": [
{
"count": 123,
"highlighted": "<string>",
"value": "<string>"
}
],
"field_name": "<string>",
"sampled": true,
"stats": {
"total_values": 123
},
"localizedFieldName": "<string>"
}
],
"found": 123,
"hits": [
{
"document": {
"id": "<string>",
"propertyId": 123,
"propertyDesignation": "<string>",
"propertySlug": "<string>",
"buildingNames": [
"<string>"
],
"centroidArea1": [
123
],
"municipalityCode": 123,
"countyCode": 123,
"landArea": 123,
"waterArea": 123,
"totalArea": 123,
"streetAddress": "<string>",
"postalCode": 123,
"city": "<string>",
"buildingTypes": [
"<string>"
],
"buildingPurposes": [
"<string>"
],
"numberOfAreas": 123,
"areas": [
{
"areaId": 123,
"surface": [
[
[
123
]
]
],
"centroid": [
123
]
}
],
"lastOwnerRegistrationDate": 123,
"owners": [
{
"companyId": 123,
"personId": 123,
"numerator": 123,
"denominator": 123,
"registrationDate": 123
}
],
"numberOfBuildings": 123,
"numberOfAddresses": 123,
"safetyShelterNumbers": [
"<string>"
],
"taxationCode": 123,
"taxationValue": 123,
"taxationYear": 123,
"taxationProperties": [
"<string>"
],
"taxationValueParts": [
{
"part": "<string>",
"amount": 123
}
]
},
"geo_distance_meters": null,
"highlight": null,
"highlights": [
{
"field": "<string>",
"matched_tokens": [
"<string>"
],
"snippet": "<string>"
}
],
"text_match": 123,
"text_match_info": {
"best_field_score": "<string>",
"best_field_weight": 123,
"fields_matched": 123,
"num_tokens_dropped": 123,
"score": "<string>",
"tokens_matched": 123,
"typo_prefix_score": 123
}
}
],
"grouped_hits": {
"group_key": [
"<string>"
],
"hits": [
{
"document": {
"id": "<string>",
"propertyId": 123,
"propertyDesignation": "<string>",
"propertySlug": "<string>",
"buildingNames": [
"<string>"
],
"centroidArea1": [
123
],
"municipalityCode": 123,
"countyCode": 123,
"landArea": 123,
"waterArea": 123,
"totalArea": 123,
"streetAddress": "<string>",
"postalCode": 123,
"city": "<string>",
"buildingTypes": [
"<string>"
],
"buildingPurposes": [
"<string>"
],
"numberOfAreas": 123,
"areas": [
{
"areaId": 123,
"surface": [
[
[
123
]
]
],
"centroid": [
123
]
}
],
"lastOwnerRegistrationDate": 123,
"owners": [
{
"companyId": 123,
"personId": 123,
"numerator": 123,
"denominator": 123,
"registrationDate": 123
}
],
"numberOfBuildings": 123,
"numberOfAddresses": 123,
"safetyShelterNumbers": [
"<string>"
],
"taxationCode": 123,
"taxationValue": 123,
"taxationYear": 123,
"taxationProperties": [
"<string>"
],
"taxationValueParts": [
{
"part": "<string>",
"amount": 123
}
]
},
"geo_distance_meters": null,
"highlight": null,
"highlights": [
{
"field": "<string>",
"matched_tokens": [
"<string>"
],
"snippet": "<string>"
}
],
"text_match": 123,
"text_match_info": {
"best_field_score": "<string>",
"best_field_weight": 123,
"fields_matched": 123,
"num_tokens_dropped": 123,
"score": "<string>",
"tokens_matched": 123,
"typo_prefix_score": 123
}
}
]
},
"out_of": 123,
"page": 123,
"request_params": {
"collection_name": "<string>",
"first_q": "<string>",
"per_page": 123,
"q": "<string>"
},
"search_cutoff": true,
"search_time_ms": 123
}Check our extensive examples and description here.
You can add
&view=html to your querystring and we will render an
html page with explanations.Authorizations
Query Parameters
The query string use * for all
Minimum string length:
1Query by field, for supported fields see documentation
Filter by, for supported fields see documentation
Sort by, for supported fields see documentation
Set to html if you want to render the search result to webpage
Response
200 - application/json
The search response
⌘I