curl --request GET \
--url https://api.northreports.com/v1/reports \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.northreports.com/v1/reports"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.northreports.com/v1/reports', 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.northreports.com/v1/reports",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.northreports.com/v1/reports"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.northreports.com/v1/reports")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.northreports.com/v1/reports")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"address": "123 Main Street",
"city": "Austin",
"state": "TX",
"zip": "78701",
"price": 450000,
"bedrooms": 3,
"bathrooms": 2,
"square_feet": 1850,
"is_published": true,
"views_count": 45,
"date_created": "2024-01-15T10:30:00Z"
}
],
"total": 25,
"limit": 50,
"offset": 0
}List Reports
Retrieves a paginated list of all reports in your team. Use query parameters to filter and paginate results.
Searching by address: Pass ?address= to look up a single report by property address
without knowing the report ID. Returns { data: <report> } (a single object, not a list).
Matching is partial, case-insensitive, and handles common abbreviations
(e.g. St = Street, APT = Unit).
Example: GET /v1/reports?address=123 Main St
curl --request GET \
--url https://api.northreports.com/v1/reports \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.northreports.com/v1/reports"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.northreports.com/v1/reports', 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.northreports.com/v1/reports",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.northreports.com/v1/reports"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.northreports.com/v1/reports")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.northreports.com/v1/reports")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"address": "123 Main Street",
"city": "Austin",
"state": "TX",
"zip": "78701",
"price": 450000,
"bedrooms": 3,
"bathrooms": 2,
"square_feet": 1850,
"is_published": true,
"views_count": 45,
"date_created": "2024-01-15T10:30:00Z"
}
],
"total": 25,
"limit": 50,
"offset": 0
}Authorizations
API key authentication. Include your API key in the Authorization header:
Authorization: Bearer north_sk_live_xxxxxxxxxxxx
Query Parameters
Maximum number of reports to return (ignored when address is provided)
1 <= x <= 100Number of reports to skip for pagination (ignored when address is provided)
x >= 0Filter by report status (ignored when address is provided)
draft, published, all Search for a specific report by address. When provided, returns a single matching report
as { data: <report> } (not a paginated list). Takes priority over all other filters.
Supports partial matching (case-insensitive) with automatic abbreviation handling.
Example: "123 Main St", "456 Oak Avenue", or just "Main Street"