Get active signals for a geo ID
curl --request GET \
--url https://api.homelogs.io/v1/signals/geo/location/{geo_id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.homelogs.io/v1/signals/geo/location/{geo_id}"
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.homelogs.io/v1/signals/geo/location/{geo_id}', 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.homelogs.io/v1/signals/geo/location/{geo_id}",
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.homelogs.io/v1/signals/geo/location/{geo_id}"
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.homelogs.io/v1/signals/geo/location/{geo_id}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.homelogs.io/v1/signals/geo/location/{geo_id}")
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{
"geo_id": "<string>",
"geo_type": "property",
"state": "<string>",
"count": 1,
"signals": [
{
"signal_key": "<string>",
"value": {},
"score": 123,
"confidence": 123,
"decision": "<string>",
"reasons": [
"<string>"
],
"computed_at": "2023-11-07T05:31:56Z"
}
],
"missing_signal_keys": [
"<string>"
]
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "state must be a 2-letter code",
"request_id": "req-123"
}
}{
"message": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "state must be a 2-letter code",
"request_id": "req-123"
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "state must be a 2-letter code",
"request_id": "req-123"
}
}{
"message": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "state must be a 2-letter code",
"request_id": "req-123"
}
}Geo-Scoped Signals
Location Signals
GET
/
v1
/
signals
/
geo
/
location
/
{geo_id}
Get active signals for a geo ID
curl --request GET \
--url https://api.homelogs.io/v1/signals/geo/location/{geo_id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.homelogs.io/v1/signals/geo/location/{geo_id}"
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.homelogs.io/v1/signals/geo/location/{geo_id}', 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.homelogs.io/v1/signals/geo/location/{geo_id}",
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.homelogs.io/v1/signals/geo/location/{geo_id}"
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.homelogs.io/v1/signals/geo/location/{geo_id}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.homelogs.io/v1/signals/geo/location/{geo_id}")
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{
"geo_id": "<string>",
"geo_type": "property",
"state": "<string>",
"count": 1,
"signals": [
{
"signal_key": "<string>",
"value": {},
"score": 123,
"confidence": 123,
"decision": "<string>",
"reasons": [
"<string>"
],
"computed_at": "2023-11-07T05:31:56Z"
}
],
"missing_signal_keys": [
"<string>"
]
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "state must be a 2-letter code",
"request_id": "req-123"
}
}{
"message": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "state must be a 2-letter code",
"request_id": "req-123"
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "state must be a 2-letter code",
"request_id": "req-123"
}
}{
"message": "<string>"
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "state must be a 2-letter code",
"request_id": "req-123"
}
}Returns active geo-scoped signal rows for one
geo_id.
Use this for a location-level read of hotspot or velocity-style signals that are already computed for that geography.
For narrative examples and interpretation guidance, see Signals & Methodology.
Required input
geo_id(path, required)
Optional input
signal_keys(query, CSV list)
Example request
curl -sS "$API_BASE_URL/v1/signals/geo/location/geo_county_6973f63e37a900040c0d?signal_keys=roofing_activity_hotspot,hvac_activity_hotspot" \
-H "x-api-key: $HOMELOGS_API_KEY"
Response shape
geo_id,geo_type,statecountsignals[]withsignal_key,value,score,confidence,decision,reasons,computed_atmissing_signal_keys[]
Authorizations
Path Parameters
Example:
"geo_city_0200d4df17d3b8cd84c6"
Query Parameters
Optional CSV list of signal keys.
Example:
"roofing_activity_hotspot,hvac_activity_hotspot"
Response
Signal rows and missing key diagnostics.
Was this page helpful?

