Search geo signals within a state
curl --request GET \
--url https://api.homelogs.io/v1/signals/geo/search \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.homelogs.io/v1/signals/geo/search"
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/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.homelogs.io/v1/signals/geo/search",
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/search"
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/search")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.homelogs.io/v1/signals/geo/search")
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{
"state": "<string>",
"count": 1,
"signals": [
{
"signal_key": "<string>",
"value": {},
"score": 123,
"confidence": 123,
"decision": "<string>",
"reasons": [
"<string>"
],
"computed_at": "2023-11-07T05:31:56Z",
"geo_id": "<string>",
"geo_type": "property",
"display_name": "<string>"
}
],
"next_cursor": "<string>"
}{
"message": "<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"
}
}Geo-Scoped Signals
Search Signals
GET
/
v1
/
signals
/
geo
/
search
Search geo signals within a state
curl --request GET \
--url https://api.homelogs.io/v1/signals/geo/search \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.homelogs.io/v1/signals/geo/search"
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/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.homelogs.io/v1/signals/geo/search",
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/search"
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/search")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.homelogs.io/v1/signals/geo/search")
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{
"state": "<string>",
"count": 1,
"signals": [
{
"signal_key": "<string>",
"value": {},
"score": 123,
"confidence": 123,
"decision": "<string>",
"reasons": [
"<string>"
],
"computed_at": "2023-11-07T05:31:56Z",
"geo_id": "<string>",
"geo_type": "property",
"display_name": "<string>"
}
],
"next_cursor": "<string>"
}{
"message": "<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"
}
}Searches geo-scoped signals across a state, with filters like
geo_type, signal_keys, and decision/score thresholds.
Use this when you want ranked or filtered geo-level opportunities, not just one fixed geo_id.
For narrative examples and interpretation guidance, see Signals & Methodology.
Required input
- None (defaults to
state=WAif omitted)
Optional input
state(2-letter code)signal_keys(CSV list)geo_type(jurisdiction,city,zip,county,state)decision(for examplepositive)min_score(0..1)limit(1..100)cursor(opaque pagination token)
Behavior notes
- If
signal_keysis provided, it is applied as a hard filter. - If
signal_keysis omitted, results are ranked across all active geo signals by score. - Pagination order is
score DESC, signal_key ASC, geo_id ASC.
Example request
curl -sS "$API_BASE_URL/v1/signals/geo/search?state=WA&geo_type=county&signal_keys=roofing_activity_hotspot&decision=positive&min_score=0.60&limit=25" \
-H "x-api-key: $HOMELOGS_API_KEY"
Response shape
statecountsignals[]withgeo_id,geo_type,display_name,signal_key,value,score,confidence,decision,reasons,computed_atnext_cursor
Authorizations
Query Parameters
Pattern:
^[A-Za-z]{2}$Optional CSV list of signal keys.
Available options:
property, jurisdiction, city, zip, county, state Example:
"positive"
Required range:
0 <= x <= 1Example:
0.5
Required range:
1 <= x <= 100Opaque cursor from previous page.
Was this page helpful?

