curl --request POST \
--url https://api.pubrio.com/companies/cloud_footprints/search \
--header 'Content-Type: application/json' \
--header 'pubrio-api-key: <api-key>' \
--data '
{
"providers": [
"AWS",
"Cloudflare",
"Hetzner"
],
"exclude_providers": [
"AWS",
"Cloudflare",
"Hetzner"
],
"target_locations": [
"TW",
"AE",
"NO"
],
"exclude_target_locations": [
"IS",
"GB",
"FR",
"IE",
"ES"
],
"cloud_regions": [
"us-east-1",
"eu-central-1"
],
"exclude_cloud_regions": [
"us-east-1",
"eu-central-1"
],
"cities": [
"Ashburn",
"Frankfurt"
],
"exclude_cities": [
"Ashburn",
"Frankfurt"
],
"first_seen_dates": [
"2026-01-01",
null
],
"last_seen_dates": [
"2026-01-01",
null
],
"is_cross_border_only": true,
"host_count": [
1,
null
],
"server_count": [
1,
null
],
"shared_server_count": [
1,
null
],
"region_count": [
1,
null
],
"city_count": [
1,
null
],
"cloud_footprint_host_count": [
1,
null
],
"cloud_footprint_server_count": [
1,
null
],
"cloud_footprint_shared_server_count": [
1,
null
],
"cloud_footprint_provider_count": [
1,
null
],
"cloud_footprint_country_count": [
1,
null
],
"cloud_footprint_cross_border_country_count": [
1,
null
],
"cloud_footprint_region_count": [
1,
null
],
"cloud_footprint_city_count": [
1,
null
],
"company_locations": [
"US",
"SG",
"CN"
],
"cloud_footprint_id": "f28215e6-f6ed-40c2-ac9b-d8e70164c0be",
"cloud_footprint_ids": [
"f28215e6-f6ed-40c2-ac9b-d8e70164c0be"
],
"companies": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"domains": [
"pubrio.com"
],
"per_page": 25,
"page": 1,
"is_ascending_order": false,
"cloud_footprint_providers": [
"AWS",
"Cloudflare"
],
"cloud_footprint_target_locations": [
"DE",
"SG"
],
"cloud_footprint_primary_provider": [
"AWS"
],
"domain": "pubrio.com",
"domain_search_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"linkedin_urls": [
"https://www.linkedin.com/company/pubrio"
],
"filter_conditions": [
{
"key": "cloud_regions",
"operator": "and"
}
]
}
'import requests
url = "https://api.pubrio.com/companies/cloud_footprints/search"
payload = {
"providers": ["AWS", "Cloudflare", "Hetzner"],
"exclude_providers": ["AWS", "Cloudflare", "Hetzner"],
"target_locations": ["TW", "AE", "NO"],
"exclude_target_locations": ["IS", "GB", "FR", "IE", "ES"],
"cloud_regions": ["us-east-1", "eu-central-1"],
"exclude_cloud_regions": ["us-east-1", "eu-central-1"],
"cities": ["Ashburn", "Frankfurt"],
"exclude_cities": ["Ashburn", "Frankfurt"],
"first_seen_dates": ["2026-01-01", None],
"last_seen_dates": ["2026-01-01", None],
"is_cross_border_only": True,
"host_count": [1, None],
"server_count": [1, None],
"shared_server_count": [1, None],
"region_count": [1, None],
"city_count": [1, None],
"cloud_footprint_host_count": [1, None],
"cloud_footprint_server_count": [1, None],
"cloud_footprint_shared_server_count": [1, None],
"cloud_footprint_provider_count": [1, None],
"cloud_footprint_country_count": [1, None],
"cloud_footprint_cross_border_country_count": [1, None],
"cloud_footprint_region_count": [1, None],
"cloud_footprint_city_count": [1, None],
"company_locations": ["US", "SG", "CN"],
"cloud_footprint_id": "f28215e6-f6ed-40c2-ac9b-d8e70164c0be",
"cloud_footprint_ids": ["f28215e6-f6ed-40c2-ac9b-d8e70164c0be"],
"companies": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"domains": ["pubrio.com"],
"per_page": 25,
"page": 1,
"is_ascending_order": False,
"cloud_footprint_providers": ["AWS", "Cloudflare"],
"cloud_footprint_target_locations": ["DE", "SG"],
"cloud_footprint_primary_provider": ["AWS"],
"domain": "pubrio.com",
"domain_search_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"linkedin_urls": ["https://www.linkedin.com/company/pubrio"],
"filter_conditions": [
{
"key": "cloud_regions",
"operator": "and"
}
]
}
headers = {
"pubrio-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'pubrio-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
providers: ['AWS', 'Cloudflare', 'Hetzner'],
exclude_providers: ['AWS', 'Cloudflare', 'Hetzner'],
target_locations: ['TW', 'AE', 'NO'],
exclude_target_locations: ['IS', 'GB', 'FR', 'IE', 'ES'],
cloud_regions: ['us-east-1', 'eu-central-1'],
exclude_cloud_regions: ['us-east-1', 'eu-central-1'],
cities: ['Ashburn', 'Frankfurt'],
exclude_cities: ['Ashburn', 'Frankfurt'],
first_seen_dates: ['2026-01-01', null],
last_seen_dates: ['2026-01-01', null],
is_cross_border_only: true,
host_count: [1, null],
server_count: [1, null],
shared_server_count: [1, null],
region_count: [1, null],
city_count: [1, null],
cloud_footprint_host_count: [1, null],
cloud_footprint_server_count: [1, null],
cloud_footprint_shared_server_count: [1, null],
cloud_footprint_provider_count: [1, null],
cloud_footprint_country_count: [1, null],
cloud_footprint_cross_border_country_count: [1, null],
cloud_footprint_region_count: [1, null],
cloud_footprint_city_count: [1, null],
company_locations: ['US', 'SG', 'CN'],
cloud_footprint_id: 'f28215e6-f6ed-40c2-ac9b-d8e70164c0be',
cloud_footprint_ids: ['f28215e6-f6ed-40c2-ac9b-d8e70164c0be'],
companies: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
domains: ['pubrio.com'],
per_page: 25,
page: 1,
is_ascending_order: false,
cloud_footprint_providers: ['AWS', 'Cloudflare'],
cloud_footprint_target_locations: ['DE', 'SG'],
cloud_footprint_primary_provider: ['AWS'],
domain: 'pubrio.com',
domain_search_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
linkedin_urls: ['https://www.linkedin.com/company/pubrio'],
filter_conditions: [{key: 'cloud_regions', operator: 'and'}]
})
};
fetch('https://api.pubrio.com/companies/cloud_footprints/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.pubrio.com/companies/cloud_footprints/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'providers' => [
'AWS',
'Cloudflare',
'Hetzner'
],
'exclude_providers' => [
'AWS',
'Cloudflare',
'Hetzner'
],
'target_locations' => [
'TW',
'AE',
'NO'
],
'exclude_target_locations' => [
'IS',
'GB',
'FR',
'IE',
'ES'
],
'cloud_regions' => [
'us-east-1',
'eu-central-1'
],
'exclude_cloud_regions' => [
'us-east-1',
'eu-central-1'
],
'cities' => [
'Ashburn',
'Frankfurt'
],
'exclude_cities' => [
'Ashburn',
'Frankfurt'
],
'first_seen_dates' => [
'2026-01-01',
null
],
'last_seen_dates' => [
'2026-01-01',
null
],
'is_cross_border_only' => true,
'host_count' => [
1,
null
],
'server_count' => [
1,
null
],
'shared_server_count' => [
1,
null
],
'region_count' => [
1,
null
],
'city_count' => [
1,
null
],
'cloud_footprint_host_count' => [
1,
null
],
'cloud_footprint_server_count' => [
1,
null
],
'cloud_footprint_shared_server_count' => [
1,
null
],
'cloud_footprint_provider_count' => [
1,
null
],
'cloud_footprint_country_count' => [
1,
null
],
'cloud_footprint_cross_border_country_count' => [
1,
null
],
'cloud_footprint_region_count' => [
1,
null
],
'cloud_footprint_city_count' => [
1,
null
],
'company_locations' => [
'US',
'SG',
'CN'
],
'cloud_footprint_id' => 'f28215e6-f6ed-40c2-ac9b-d8e70164c0be',
'cloud_footprint_ids' => [
'f28215e6-f6ed-40c2-ac9b-d8e70164c0be'
],
'companies' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'domains' => [
'pubrio.com'
],
'per_page' => 25,
'page' => 1,
'is_ascending_order' => false,
'cloud_footprint_providers' => [
'AWS',
'Cloudflare'
],
'cloud_footprint_target_locations' => [
'DE',
'SG'
],
'cloud_footprint_primary_provider' => [
'AWS'
],
'domain' => 'pubrio.com',
'domain_search_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'linkedin_urls' => [
'https://www.linkedin.com/company/pubrio'
],
'filter_conditions' => [
[
'key' => 'cloud_regions',
'operator' => 'and'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"pubrio-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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.pubrio.com/companies/cloud_footprints/search"
payload := strings.NewReader("{\n \"providers\": [\n \"AWS\",\n \"Cloudflare\",\n \"Hetzner\"\n ],\n \"exclude_providers\": [\n \"AWS\",\n \"Cloudflare\",\n \"Hetzner\"\n ],\n \"target_locations\": [\n \"TW\",\n \"AE\",\n \"NO\"\n ],\n \"exclude_target_locations\": [\n \"IS\",\n \"GB\",\n \"FR\",\n \"IE\",\n \"ES\"\n ],\n \"cloud_regions\": [\n \"us-east-1\",\n \"eu-central-1\"\n ],\n \"exclude_cloud_regions\": [\n \"us-east-1\",\n \"eu-central-1\"\n ],\n \"cities\": [\n \"Ashburn\",\n \"Frankfurt\"\n ],\n \"exclude_cities\": [\n \"Ashburn\",\n \"Frankfurt\"\n ],\n \"first_seen_dates\": [\n \"2026-01-01\",\n null\n ],\n \"last_seen_dates\": [\n \"2026-01-01\",\n null\n ],\n \"is_cross_border_only\": true,\n \"host_count\": [\n 1,\n null\n ],\n \"server_count\": [\n 1,\n null\n ],\n \"shared_server_count\": [\n 1,\n null\n ],\n \"region_count\": [\n 1,\n null\n ],\n \"city_count\": [\n 1,\n null\n ],\n \"cloud_footprint_host_count\": [\n 1,\n null\n ],\n \"cloud_footprint_server_count\": [\n 1,\n null\n ],\n \"cloud_footprint_shared_server_count\": [\n 1,\n null\n ],\n \"cloud_footprint_provider_count\": [\n 1,\n null\n ],\n \"cloud_footprint_country_count\": [\n 1,\n null\n ],\n \"cloud_footprint_cross_border_country_count\": [\n 1,\n null\n ],\n \"cloud_footprint_region_count\": [\n 1,\n null\n ],\n \"cloud_footprint_city_count\": [\n 1,\n null\n ],\n \"company_locations\": [\n \"US\",\n \"SG\",\n \"CN\"\n ],\n \"cloud_footprint_id\": \"f28215e6-f6ed-40c2-ac9b-d8e70164c0be\",\n \"cloud_footprint_ids\": [\n \"f28215e6-f6ed-40c2-ac9b-d8e70164c0be\"\n ],\n \"companies\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"domains\": [\n \"pubrio.com\"\n ],\n \"per_page\": 25,\n \"page\": 1,\n \"is_ascending_order\": false,\n \"cloud_footprint_providers\": [\n \"AWS\",\n \"Cloudflare\"\n ],\n \"cloud_footprint_target_locations\": [\n \"DE\",\n \"SG\"\n ],\n \"cloud_footprint_primary_provider\": [\n \"AWS\"\n ],\n \"domain\": \"pubrio.com\",\n \"domain_search_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"linkedin_urls\": [\n \"https://www.linkedin.com/company/pubrio\"\n ],\n \"filter_conditions\": [\n {\n \"key\": \"cloud_regions\",\n \"operator\": \"and\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("pubrio-api-key", "<api-key>")
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.post("https://api.pubrio.com/companies/cloud_footprints/search")
.header("pubrio-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"providers\": [\n \"AWS\",\n \"Cloudflare\",\n \"Hetzner\"\n ],\n \"exclude_providers\": [\n \"AWS\",\n \"Cloudflare\",\n \"Hetzner\"\n ],\n \"target_locations\": [\n \"TW\",\n \"AE\",\n \"NO\"\n ],\n \"exclude_target_locations\": [\n \"IS\",\n \"GB\",\n \"FR\",\n \"IE\",\n \"ES\"\n ],\n \"cloud_regions\": [\n \"us-east-1\",\n \"eu-central-1\"\n ],\n \"exclude_cloud_regions\": [\n \"us-east-1\",\n \"eu-central-1\"\n ],\n \"cities\": [\n \"Ashburn\",\n \"Frankfurt\"\n ],\n \"exclude_cities\": [\n \"Ashburn\",\n \"Frankfurt\"\n ],\n \"first_seen_dates\": [\n \"2026-01-01\",\n null\n ],\n \"last_seen_dates\": [\n \"2026-01-01\",\n null\n ],\n \"is_cross_border_only\": true,\n \"host_count\": [\n 1,\n null\n ],\n \"server_count\": [\n 1,\n null\n ],\n \"shared_server_count\": [\n 1,\n null\n ],\n \"region_count\": [\n 1,\n null\n ],\n \"city_count\": [\n 1,\n null\n ],\n \"cloud_footprint_host_count\": [\n 1,\n null\n ],\n \"cloud_footprint_server_count\": [\n 1,\n null\n ],\n \"cloud_footprint_shared_server_count\": [\n 1,\n null\n ],\n \"cloud_footprint_provider_count\": [\n 1,\n null\n ],\n \"cloud_footprint_country_count\": [\n 1,\n null\n ],\n \"cloud_footprint_cross_border_country_count\": [\n 1,\n null\n ],\n \"cloud_footprint_region_count\": [\n 1,\n null\n ],\n \"cloud_footprint_city_count\": [\n 1,\n null\n ],\n \"company_locations\": [\n \"US\",\n \"SG\",\n \"CN\"\n ],\n \"cloud_footprint_id\": \"f28215e6-f6ed-40c2-ac9b-d8e70164c0be\",\n \"cloud_footprint_ids\": [\n \"f28215e6-f6ed-40c2-ac9b-d8e70164c0be\"\n ],\n \"companies\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"domains\": [\n \"pubrio.com\"\n ],\n \"per_page\": 25,\n \"page\": 1,\n \"is_ascending_order\": false,\n \"cloud_footprint_providers\": [\n \"AWS\",\n \"Cloudflare\"\n ],\n \"cloud_footprint_target_locations\": [\n \"DE\",\n \"SG\"\n ],\n \"cloud_footprint_primary_provider\": [\n \"AWS\"\n ],\n \"domain\": \"pubrio.com\",\n \"domain_search_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"linkedin_urls\": [\n \"https://www.linkedin.com/company/pubrio\"\n ],\n \"filter_conditions\": [\n {\n \"key\": \"cloud_regions\",\n \"operator\": \"and\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pubrio.com/companies/cloud_footprints/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["pubrio-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"providers\": [\n \"AWS\",\n \"Cloudflare\",\n \"Hetzner\"\n ],\n \"exclude_providers\": [\n \"AWS\",\n \"Cloudflare\",\n \"Hetzner\"\n ],\n \"target_locations\": [\n \"TW\",\n \"AE\",\n \"NO\"\n ],\n \"exclude_target_locations\": [\n \"IS\",\n \"GB\",\n \"FR\",\n \"IE\",\n \"ES\"\n ],\n \"cloud_regions\": [\n \"us-east-1\",\n \"eu-central-1\"\n ],\n \"exclude_cloud_regions\": [\n \"us-east-1\",\n \"eu-central-1\"\n ],\n \"cities\": [\n \"Ashburn\",\n \"Frankfurt\"\n ],\n \"exclude_cities\": [\n \"Ashburn\",\n \"Frankfurt\"\n ],\n \"first_seen_dates\": [\n \"2026-01-01\",\n null\n ],\n \"last_seen_dates\": [\n \"2026-01-01\",\n null\n ],\n \"is_cross_border_only\": true,\n \"host_count\": [\n 1,\n null\n ],\n \"server_count\": [\n 1,\n null\n ],\n \"shared_server_count\": [\n 1,\n null\n ],\n \"region_count\": [\n 1,\n null\n ],\n \"city_count\": [\n 1,\n null\n ],\n \"cloud_footprint_host_count\": [\n 1,\n null\n ],\n \"cloud_footprint_server_count\": [\n 1,\n null\n ],\n \"cloud_footprint_shared_server_count\": [\n 1,\n null\n ],\n \"cloud_footprint_provider_count\": [\n 1,\n null\n ],\n \"cloud_footprint_country_count\": [\n 1,\n null\n ],\n \"cloud_footprint_cross_border_country_count\": [\n 1,\n null\n ],\n \"cloud_footprint_region_count\": [\n 1,\n null\n ],\n \"cloud_footprint_city_count\": [\n 1,\n null\n ],\n \"company_locations\": [\n \"US\",\n \"SG\",\n \"CN\"\n ],\n \"cloud_footprint_id\": \"f28215e6-f6ed-40c2-ac9b-d8e70164c0be\",\n \"cloud_footprint_ids\": [\n \"f28215e6-f6ed-40c2-ac9b-d8e70164c0be\"\n ],\n \"companies\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"domains\": [\n \"pubrio.com\"\n ],\n \"per_page\": 25,\n \"page\": 1,\n \"is_ascending_order\": false,\n \"cloud_footprint_providers\": [\n \"AWS\",\n \"Cloudflare\"\n ],\n \"cloud_footprint_target_locations\": [\n \"DE\",\n \"SG\"\n ],\n \"cloud_footprint_primary_provider\": [\n \"AWS\"\n ],\n \"domain\": \"pubrio.com\",\n \"domain_search_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"linkedin_urls\": [\n \"https://www.linkedin.com/company/pubrio\"\n ],\n \"filter_conditions\": [\n {\n \"key\": \"cloud_regions\",\n \"operator\": \"and\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"metadata": {
"profile": null,
"filters": {
"page": 1,
"per_page": 1,
"is_cross_border_only": true,
"language": "en"
},
"ignored_fields": []
},
"data": {
"pagination": {
"page": 1,
"per_page": 1,
"total_entries": 48700,
"total_pages": 48700,
"total_display_pages": 250,
"is_timeout": false
},
"cloud_footprints": [
{
"cloud_footprint_id": "042fee02-5121-4f23-a166-69bc48e9dfe8",
"domain_search_id": "2ebd09b1-3bdf-4bf0-9732-c2ed6a734f77",
"provider": "AWS",
"country_code": "US",
"company_country_code": "CL",
"is_home_market": false,
"host_count": 232,
"server_count": 3,
"shared_server_count": 0,
"region_count": 1,
"city_count": 0,
"cloud_regions": [
"us-east-1"
],
"cities": null,
"first_seen_at": "2026-07-26T16:57:20.362Z",
"last_seen_at": "2026-09-04T10:07:09.799Z",
"last_modified": "2026-09-04T10:26:52.183Z",
"companies": {
"logo_url": "https://buckets.pubrio.com/company-logo/MTc4ODM0MDY5Nmlsajlzc25qMXJ0aWFwLmNvbWxpbmtlZGluXzQ3Njc2Nzkw.jpg",
"domain_search_id": "2ebd09b1-3bdf-4bf0-9732-c2ed6a734f77",
"company_name": "RTIAP Soluciones Tecnológicas SpA",
"linkedin_name": "rtiap",
"country_code": "CL",
"company_url": "http://www.rtiap.com",
"domain": "rtiap.com"
},
"evidence_url": "https://www.pubrio.com/evidence/84c941ea04a8fa9ed1bbeabc8ff496a7"
}
]
}
}{
"code": 40001,
"message": "Errors and codes will vary depending on the scenario, please see the documentation for information.",
"details": {}
}{
"error": "Request rate limit exceeded. Please wait and try again later."
}{
"error": "An unexpected error occurred on the server."
}Company Cloud Footprint Search
Search the public cloud and hosting footprint of companies: which providers, countries and regions they run infrastructure in. Each row is one company at one provider in one country. See the Cloud Footprint Search guide.
curl --request POST \
--url https://api.pubrio.com/companies/cloud_footprints/search \
--header 'Content-Type: application/json' \
--header 'pubrio-api-key: <api-key>' \
--data '
{
"providers": [
"AWS",
"Cloudflare",
"Hetzner"
],
"exclude_providers": [
"AWS",
"Cloudflare",
"Hetzner"
],
"target_locations": [
"TW",
"AE",
"NO"
],
"exclude_target_locations": [
"IS",
"GB",
"FR",
"IE",
"ES"
],
"cloud_regions": [
"us-east-1",
"eu-central-1"
],
"exclude_cloud_regions": [
"us-east-1",
"eu-central-1"
],
"cities": [
"Ashburn",
"Frankfurt"
],
"exclude_cities": [
"Ashburn",
"Frankfurt"
],
"first_seen_dates": [
"2026-01-01",
null
],
"last_seen_dates": [
"2026-01-01",
null
],
"is_cross_border_only": true,
"host_count": [
1,
null
],
"server_count": [
1,
null
],
"shared_server_count": [
1,
null
],
"region_count": [
1,
null
],
"city_count": [
1,
null
],
"cloud_footprint_host_count": [
1,
null
],
"cloud_footprint_server_count": [
1,
null
],
"cloud_footprint_shared_server_count": [
1,
null
],
"cloud_footprint_provider_count": [
1,
null
],
"cloud_footprint_country_count": [
1,
null
],
"cloud_footprint_cross_border_country_count": [
1,
null
],
"cloud_footprint_region_count": [
1,
null
],
"cloud_footprint_city_count": [
1,
null
],
"company_locations": [
"US",
"SG",
"CN"
],
"cloud_footprint_id": "f28215e6-f6ed-40c2-ac9b-d8e70164c0be",
"cloud_footprint_ids": [
"f28215e6-f6ed-40c2-ac9b-d8e70164c0be"
],
"companies": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"domains": [
"pubrio.com"
],
"per_page": 25,
"page": 1,
"is_ascending_order": false,
"cloud_footprint_providers": [
"AWS",
"Cloudflare"
],
"cloud_footprint_target_locations": [
"DE",
"SG"
],
"cloud_footprint_primary_provider": [
"AWS"
],
"domain": "pubrio.com",
"domain_search_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"linkedin_urls": [
"https://www.linkedin.com/company/pubrio"
],
"filter_conditions": [
{
"key": "cloud_regions",
"operator": "and"
}
]
}
'import requests
url = "https://api.pubrio.com/companies/cloud_footprints/search"
payload = {
"providers": ["AWS", "Cloudflare", "Hetzner"],
"exclude_providers": ["AWS", "Cloudflare", "Hetzner"],
"target_locations": ["TW", "AE", "NO"],
"exclude_target_locations": ["IS", "GB", "FR", "IE", "ES"],
"cloud_regions": ["us-east-1", "eu-central-1"],
"exclude_cloud_regions": ["us-east-1", "eu-central-1"],
"cities": ["Ashburn", "Frankfurt"],
"exclude_cities": ["Ashburn", "Frankfurt"],
"first_seen_dates": ["2026-01-01", None],
"last_seen_dates": ["2026-01-01", None],
"is_cross_border_only": True,
"host_count": [1, None],
"server_count": [1, None],
"shared_server_count": [1, None],
"region_count": [1, None],
"city_count": [1, None],
"cloud_footprint_host_count": [1, None],
"cloud_footprint_server_count": [1, None],
"cloud_footprint_shared_server_count": [1, None],
"cloud_footprint_provider_count": [1, None],
"cloud_footprint_country_count": [1, None],
"cloud_footprint_cross_border_country_count": [1, None],
"cloud_footprint_region_count": [1, None],
"cloud_footprint_city_count": [1, None],
"company_locations": ["US", "SG", "CN"],
"cloud_footprint_id": "f28215e6-f6ed-40c2-ac9b-d8e70164c0be",
"cloud_footprint_ids": ["f28215e6-f6ed-40c2-ac9b-d8e70164c0be"],
"companies": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"domains": ["pubrio.com"],
"per_page": 25,
"page": 1,
"is_ascending_order": False,
"cloud_footprint_providers": ["AWS", "Cloudflare"],
"cloud_footprint_target_locations": ["DE", "SG"],
"cloud_footprint_primary_provider": ["AWS"],
"domain": "pubrio.com",
"domain_search_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"linkedin_urls": ["https://www.linkedin.com/company/pubrio"],
"filter_conditions": [
{
"key": "cloud_regions",
"operator": "and"
}
]
}
headers = {
"pubrio-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'pubrio-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
providers: ['AWS', 'Cloudflare', 'Hetzner'],
exclude_providers: ['AWS', 'Cloudflare', 'Hetzner'],
target_locations: ['TW', 'AE', 'NO'],
exclude_target_locations: ['IS', 'GB', 'FR', 'IE', 'ES'],
cloud_regions: ['us-east-1', 'eu-central-1'],
exclude_cloud_regions: ['us-east-1', 'eu-central-1'],
cities: ['Ashburn', 'Frankfurt'],
exclude_cities: ['Ashburn', 'Frankfurt'],
first_seen_dates: ['2026-01-01', null],
last_seen_dates: ['2026-01-01', null],
is_cross_border_only: true,
host_count: [1, null],
server_count: [1, null],
shared_server_count: [1, null],
region_count: [1, null],
city_count: [1, null],
cloud_footprint_host_count: [1, null],
cloud_footprint_server_count: [1, null],
cloud_footprint_shared_server_count: [1, null],
cloud_footprint_provider_count: [1, null],
cloud_footprint_country_count: [1, null],
cloud_footprint_cross_border_country_count: [1, null],
cloud_footprint_region_count: [1, null],
cloud_footprint_city_count: [1, null],
company_locations: ['US', 'SG', 'CN'],
cloud_footprint_id: 'f28215e6-f6ed-40c2-ac9b-d8e70164c0be',
cloud_footprint_ids: ['f28215e6-f6ed-40c2-ac9b-d8e70164c0be'],
companies: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
domains: ['pubrio.com'],
per_page: 25,
page: 1,
is_ascending_order: false,
cloud_footprint_providers: ['AWS', 'Cloudflare'],
cloud_footprint_target_locations: ['DE', 'SG'],
cloud_footprint_primary_provider: ['AWS'],
domain: 'pubrio.com',
domain_search_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
linkedin_urls: ['https://www.linkedin.com/company/pubrio'],
filter_conditions: [{key: 'cloud_regions', operator: 'and'}]
})
};
fetch('https://api.pubrio.com/companies/cloud_footprints/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.pubrio.com/companies/cloud_footprints/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'providers' => [
'AWS',
'Cloudflare',
'Hetzner'
],
'exclude_providers' => [
'AWS',
'Cloudflare',
'Hetzner'
],
'target_locations' => [
'TW',
'AE',
'NO'
],
'exclude_target_locations' => [
'IS',
'GB',
'FR',
'IE',
'ES'
],
'cloud_regions' => [
'us-east-1',
'eu-central-1'
],
'exclude_cloud_regions' => [
'us-east-1',
'eu-central-1'
],
'cities' => [
'Ashburn',
'Frankfurt'
],
'exclude_cities' => [
'Ashburn',
'Frankfurt'
],
'first_seen_dates' => [
'2026-01-01',
null
],
'last_seen_dates' => [
'2026-01-01',
null
],
'is_cross_border_only' => true,
'host_count' => [
1,
null
],
'server_count' => [
1,
null
],
'shared_server_count' => [
1,
null
],
'region_count' => [
1,
null
],
'city_count' => [
1,
null
],
'cloud_footprint_host_count' => [
1,
null
],
'cloud_footprint_server_count' => [
1,
null
],
'cloud_footprint_shared_server_count' => [
1,
null
],
'cloud_footprint_provider_count' => [
1,
null
],
'cloud_footprint_country_count' => [
1,
null
],
'cloud_footprint_cross_border_country_count' => [
1,
null
],
'cloud_footprint_region_count' => [
1,
null
],
'cloud_footprint_city_count' => [
1,
null
],
'company_locations' => [
'US',
'SG',
'CN'
],
'cloud_footprint_id' => 'f28215e6-f6ed-40c2-ac9b-d8e70164c0be',
'cloud_footprint_ids' => [
'f28215e6-f6ed-40c2-ac9b-d8e70164c0be'
],
'companies' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'domains' => [
'pubrio.com'
],
'per_page' => 25,
'page' => 1,
'is_ascending_order' => false,
'cloud_footprint_providers' => [
'AWS',
'Cloudflare'
],
'cloud_footprint_target_locations' => [
'DE',
'SG'
],
'cloud_footprint_primary_provider' => [
'AWS'
],
'domain' => 'pubrio.com',
'domain_search_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'linkedin_urls' => [
'https://www.linkedin.com/company/pubrio'
],
'filter_conditions' => [
[
'key' => 'cloud_regions',
'operator' => 'and'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"pubrio-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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.pubrio.com/companies/cloud_footprints/search"
payload := strings.NewReader("{\n \"providers\": [\n \"AWS\",\n \"Cloudflare\",\n \"Hetzner\"\n ],\n \"exclude_providers\": [\n \"AWS\",\n \"Cloudflare\",\n \"Hetzner\"\n ],\n \"target_locations\": [\n \"TW\",\n \"AE\",\n \"NO\"\n ],\n \"exclude_target_locations\": [\n \"IS\",\n \"GB\",\n \"FR\",\n \"IE\",\n \"ES\"\n ],\n \"cloud_regions\": [\n \"us-east-1\",\n \"eu-central-1\"\n ],\n \"exclude_cloud_regions\": [\n \"us-east-1\",\n \"eu-central-1\"\n ],\n \"cities\": [\n \"Ashburn\",\n \"Frankfurt\"\n ],\n \"exclude_cities\": [\n \"Ashburn\",\n \"Frankfurt\"\n ],\n \"first_seen_dates\": [\n \"2026-01-01\",\n null\n ],\n \"last_seen_dates\": [\n \"2026-01-01\",\n null\n ],\n \"is_cross_border_only\": true,\n \"host_count\": [\n 1,\n null\n ],\n \"server_count\": [\n 1,\n null\n ],\n \"shared_server_count\": [\n 1,\n null\n ],\n \"region_count\": [\n 1,\n null\n ],\n \"city_count\": [\n 1,\n null\n ],\n \"cloud_footprint_host_count\": [\n 1,\n null\n ],\n \"cloud_footprint_server_count\": [\n 1,\n null\n ],\n \"cloud_footprint_shared_server_count\": [\n 1,\n null\n ],\n \"cloud_footprint_provider_count\": [\n 1,\n null\n ],\n \"cloud_footprint_country_count\": [\n 1,\n null\n ],\n \"cloud_footprint_cross_border_country_count\": [\n 1,\n null\n ],\n \"cloud_footprint_region_count\": [\n 1,\n null\n ],\n \"cloud_footprint_city_count\": [\n 1,\n null\n ],\n \"company_locations\": [\n \"US\",\n \"SG\",\n \"CN\"\n ],\n \"cloud_footprint_id\": \"f28215e6-f6ed-40c2-ac9b-d8e70164c0be\",\n \"cloud_footprint_ids\": [\n \"f28215e6-f6ed-40c2-ac9b-d8e70164c0be\"\n ],\n \"companies\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"domains\": [\n \"pubrio.com\"\n ],\n \"per_page\": 25,\n \"page\": 1,\n \"is_ascending_order\": false,\n \"cloud_footprint_providers\": [\n \"AWS\",\n \"Cloudflare\"\n ],\n \"cloud_footprint_target_locations\": [\n \"DE\",\n \"SG\"\n ],\n \"cloud_footprint_primary_provider\": [\n \"AWS\"\n ],\n \"domain\": \"pubrio.com\",\n \"domain_search_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"linkedin_urls\": [\n \"https://www.linkedin.com/company/pubrio\"\n ],\n \"filter_conditions\": [\n {\n \"key\": \"cloud_regions\",\n \"operator\": \"and\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("pubrio-api-key", "<api-key>")
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.post("https://api.pubrio.com/companies/cloud_footprints/search")
.header("pubrio-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"providers\": [\n \"AWS\",\n \"Cloudflare\",\n \"Hetzner\"\n ],\n \"exclude_providers\": [\n \"AWS\",\n \"Cloudflare\",\n \"Hetzner\"\n ],\n \"target_locations\": [\n \"TW\",\n \"AE\",\n \"NO\"\n ],\n \"exclude_target_locations\": [\n \"IS\",\n \"GB\",\n \"FR\",\n \"IE\",\n \"ES\"\n ],\n \"cloud_regions\": [\n \"us-east-1\",\n \"eu-central-1\"\n ],\n \"exclude_cloud_regions\": [\n \"us-east-1\",\n \"eu-central-1\"\n ],\n \"cities\": [\n \"Ashburn\",\n \"Frankfurt\"\n ],\n \"exclude_cities\": [\n \"Ashburn\",\n \"Frankfurt\"\n ],\n \"first_seen_dates\": [\n \"2026-01-01\",\n null\n ],\n \"last_seen_dates\": [\n \"2026-01-01\",\n null\n ],\n \"is_cross_border_only\": true,\n \"host_count\": [\n 1,\n null\n ],\n \"server_count\": [\n 1,\n null\n ],\n \"shared_server_count\": [\n 1,\n null\n ],\n \"region_count\": [\n 1,\n null\n ],\n \"city_count\": [\n 1,\n null\n ],\n \"cloud_footprint_host_count\": [\n 1,\n null\n ],\n \"cloud_footprint_server_count\": [\n 1,\n null\n ],\n \"cloud_footprint_shared_server_count\": [\n 1,\n null\n ],\n \"cloud_footprint_provider_count\": [\n 1,\n null\n ],\n \"cloud_footprint_country_count\": [\n 1,\n null\n ],\n \"cloud_footprint_cross_border_country_count\": [\n 1,\n null\n ],\n \"cloud_footprint_region_count\": [\n 1,\n null\n ],\n \"cloud_footprint_city_count\": [\n 1,\n null\n ],\n \"company_locations\": [\n \"US\",\n \"SG\",\n \"CN\"\n ],\n \"cloud_footprint_id\": \"f28215e6-f6ed-40c2-ac9b-d8e70164c0be\",\n \"cloud_footprint_ids\": [\n \"f28215e6-f6ed-40c2-ac9b-d8e70164c0be\"\n ],\n \"companies\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"domains\": [\n \"pubrio.com\"\n ],\n \"per_page\": 25,\n \"page\": 1,\n \"is_ascending_order\": false,\n \"cloud_footprint_providers\": [\n \"AWS\",\n \"Cloudflare\"\n ],\n \"cloud_footprint_target_locations\": [\n \"DE\",\n \"SG\"\n ],\n \"cloud_footprint_primary_provider\": [\n \"AWS\"\n ],\n \"domain\": \"pubrio.com\",\n \"domain_search_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"linkedin_urls\": [\n \"https://www.linkedin.com/company/pubrio\"\n ],\n \"filter_conditions\": [\n {\n \"key\": \"cloud_regions\",\n \"operator\": \"and\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pubrio.com/companies/cloud_footprints/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["pubrio-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"providers\": [\n \"AWS\",\n \"Cloudflare\",\n \"Hetzner\"\n ],\n \"exclude_providers\": [\n \"AWS\",\n \"Cloudflare\",\n \"Hetzner\"\n ],\n \"target_locations\": [\n \"TW\",\n \"AE\",\n \"NO\"\n ],\n \"exclude_target_locations\": [\n \"IS\",\n \"GB\",\n \"FR\",\n \"IE\",\n \"ES\"\n ],\n \"cloud_regions\": [\n \"us-east-1\",\n \"eu-central-1\"\n ],\n \"exclude_cloud_regions\": [\n \"us-east-1\",\n \"eu-central-1\"\n ],\n \"cities\": [\n \"Ashburn\",\n \"Frankfurt\"\n ],\n \"exclude_cities\": [\n \"Ashburn\",\n \"Frankfurt\"\n ],\n \"first_seen_dates\": [\n \"2026-01-01\",\n null\n ],\n \"last_seen_dates\": [\n \"2026-01-01\",\n null\n ],\n \"is_cross_border_only\": true,\n \"host_count\": [\n 1,\n null\n ],\n \"server_count\": [\n 1,\n null\n ],\n \"shared_server_count\": [\n 1,\n null\n ],\n \"region_count\": [\n 1,\n null\n ],\n \"city_count\": [\n 1,\n null\n ],\n \"cloud_footprint_host_count\": [\n 1,\n null\n ],\n \"cloud_footprint_server_count\": [\n 1,\n null\n ],\n \"cloud_footprint_shared_server_count\": [\n 1,\n null\n ],\n \"cloud_footprint_provider_count\": [\n 1,\n null\n ],\n \"cloud_footprint_country_count\": [\n 1,\n null\n ],\n \"cloud_footprint_cross_border_country_count\": [\n 1,\n null\n ],\n \"cloud_footprint_region_count\": [\n 1,\n null\n ],\n \"cloud_footprint_city_count\": [\n 1,\n null\n ],\n \"company_locations\": [\n \"US\",\n \"SG\",\n \"CN\"\n ],\n \"cloud_footprint_id\": \"f28215e6-f6ed-40c2-ac9b-d8e70164c0be\",\n \"cloud_footprint_ids\": [\n \"f28215e6-f6ed-40c2-ac9b-d8e70164c0be\"\n ],\n \"companies\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"domains\": [\n \"pubrio.com\"\n ],\n \"per_page\": 25,\n \"page\": 1,\n \"is_ascending_order\": false,\n \"cloud_footprint_providers\": [\n \"AWS\",\n \"Cloudflare\"\n ],\n \"cloud_footprint_target_locations\": [\n \"DE\",\n \"SG\"\n ],\n \"cloud_footprint_primary_provider\": [\n \"AWS\"\n ],\n \"domain\": \"pubrio.com\",\n \"domain_search_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"linkedin_urls\": [\n \"https://www.linkedin.com/company/pubrio\"\n ],\n \"filter_conditions\": [\n {\n \"key\": \"cloud_regions\",\n \"operator\": \"and\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"metadata": {
"profile": null,
"filters": {
"page": 1,
"per_page": 1,
"is_cross_border_only": true,
"language": "en"
},
"ignored_fields": []
},
"data": {
"pagination": {
"page": 1,
"per_page": 1,
"total_entries": 48700,
"total_pages": 48700,
"total_display_pages": 250,
"is_timeout": false
},
"cloud_footprints": [
{
"cloud_footprint_id": "042fee02-5121-4f23-a166-69bc48e9dfe8",
"domain_search_id": "2ebd09b1-3bdf-4bf0-9732-c2ed6a734f77",
"provider": "AWS",
"country_code": "US",
"company_country_code": "CL",
"is_home_market": false,
"host_count": 232,
"server_count": 3,
"shared_server_count": 0,
"region_count": 1,
"city_count": 0,
"cloud_regions": [
"us-east-1"
],
"cities": null,
"first_seen_at": "2026-07-26T16:57:20.362Z",
"last_seen_at": "2026-09-04T10:07:09.799Z",
"last_modified": "2026-09-04T10:26:52.183Z",
"companies": {
"logo_url": "https://buckets.pubrio.com/company-logo/MTc4ODM0MDY5Nmlsajlzc25qMXJ0aWFwLmNvbWxpbmtlZGluXzQ3Njc2Nzkw.jpg",
"domain_search_id": "2ebd09b1-3bdf-4bf0-9732-c2ed6a734f77",
"company_name": "RTIAP Soluciones Tecnológicas SpA",
"linkedin_name": "rtiap",
"country_code": "CL",
"company_url": "http://www.rtiap.com",
"domain": "rtiap.com"
},
"evidence_url": "https://www.pubrio.com/evidence/84c941ea04a8fa9ed1bbeabc8ff496a7"
}
]
}
}{
"code": 40001,
"message": "Errors and codes will vary depending on the scenario, please see the documentation for information.",
"details": {}
}{
"error": "Request rate limit exceeded. Please wait and try again later."
}{
"error": "An unexpected error occurred on the server."
}Authorizations
Body
Restrict results to footprint rows matching these cloud or hosting providers. Scoped to this footprint row — one provider in one country.
["AWS", "Cloudflare", "Hetzner"]
Remove footprint rows matching these cloud or hosting providers. Scoped to this footprint row — one provider in one country.
["AWS", "Cloudflare", "Hetzner"]
Country codes the results must target. Combines with filter_conditions as OR by default — a result matches if it targets any of them.
["TW", "AE", "NO"]
Country codes the results must not target. Combines with filter_conditions as OR by default — a result matches if it targets any of them.
["IS", "GB", "FR", "IE", "ES"]
Restrict results to footprint rows matching these cloud regions. Scoped to this footprint row — one provider in one country.
["us-east-1", "eu-central-1"]
Remove footprint rows matching these cloud regions. Scoped to this footprint row — one provider in one country.
["us-east-1", "eu-central-1"]
Restrict results to footprint rows matching these cities. Scoped to this footprint row — one provider in one country.
["Ashburn", "Frankfurt"]
Remove footprint rows matching these cities. Scoped to this footprint row — one provider in one country.
["Ashburn", "Frankfurt"]
Two ISO 8601 dates (YYYY-MM-DD) bounding when the footprint was first seen. Scoped to this footprint row — one provider in one country.
2 elements["2026-01-01", null]
Two ISO 8601 dates (YYYY-MM-DD) bounding when the footprint was last seen. Scoped to this footprint row — one provider in one country.
2 elements["2026-01-01", null]
When true, return only footprint rows outside the company's home market. Rows whose company has no known headquarters are excluded.
true
Minimum and maximum hosts. Use null for an open-ended bound. Scoped to this footprint row — one provider in one country.
2 elements[1, null]
Minimum and maximum servers (distinct IP addresses). Use null for an open-ended bound. Scoped to this footprint row — one provider in one country.
2 elements[1, null]
Minimum and maximum servers shared with other companies. Use null for an open-ended bound. Scoped to this footprint row — one provider in one country.
2 elements[1, null]
Minimum and maximum cloud regions. Use null for an open-ended bound. Scoped to this footprint row — one provider in one country.
2 elements[1, null]
Minimum and maximum cities. Use null for an open-ended bound. Scoped to this footprint row — one provider in one country.
2 elements[1, null]
Minimum and maximum hosts. Use null for an open-ended bound. Counted for the whole company, across every provider and country.
2 elements[1, null]
Minimum and maximum servers (distinct IP addresses). Use null for an open-ended bound. Counted for the whole company, across every provider and country.
2 elements[1, null]
Minimum and maximum servers shared with other companies. Use null for an open-ended bound. Counted for the whole company, across every provider and country.
2 elements[1, null]
Minimum and maximum distinct providers used by the company. Use null for an open-ended bound. Counted for the whole company, across every provider and country.
2 elements[1, null]
Minimum and maximum countries the company hosts in. Use null for an open-ended bound. Counted for the whole company, across every provider and country.
2 elements[1, null]
Minimum and maximum countries outside the company's home market. Use null for an open-ended bound. Counted for the whole company, across every provider and country.
2 elements[1, null]
Minimum and maximum cloud regions. Use null for an open-ended bound. Counted for the whole company, across every provider and country.
2 elements[1, null]
Minimum and maximum cities. Use null for an open-ended bound. Counted for the whole company, across every provider and country.
2 elements[1, null]
The location of the company headquarters. Check out location endpoints under the Filters tab for more information.
["US", "SG", "CN"]
Identifier of a single cloud footprint row.
"f28215e6-f6ed-40c2-ac9b-d8e70164c0be"
Identifiers of specific cloud footprint rows, for exporting a selection.
["f28215e6-f6ed-40c2-ac9b-d8e70164c0be"]
A list of unique identifiers (domain_search_id) used for company and people search operations.
List of company domains used for company and people search operations. If we receive a URL such as www.pubrio.com or https://docs.pubrio.com/, the system will convert it to pubrio.com for processing.
["pubrio.com"]
Records per page. Defaults to 25, which is also the ceiling on most plans — the limit is your subscription's max_search_per_page, returned by Profile. Exceeding it returns HTTP 416 with code 41676 (or 41613 on company and people search), not a clamped result set.
x <= 2525
Sort direction. Results are returned newest-first by default; set true for oldest-first. There is no sort_by on this endpoint — the sort key is fixed and stated in the endpoint description.
false
Companies that use any of these providers anywhere. The unprefixed providers narrows the rows returned; this narrows the companies.
["AWS", "Cloudflare"]
Companies present in any of these countries anywhere in their footprint.
["DE", "SG"]
Companies whose single largest provider is one of these.
["AWS"]
A company domain used for company search operations. If we receive a URL such as www.pubrio.com or https://docs.pubrio.com/, the system will convert it to pubrio.com for processing.
"pubrio.com"
A unique identifier for the company search operation.
The fully formed URL of the LinkedIn company profile. URL begin with http and contain linkedin.com/company/
["https://www.linkedin.com/company/pubrio"]
Switches an array filter from OR (default: match any value) to AND (match all values). Applies to cloud_regions, exclude_cloud_regions, cities and exclude_cities.
Show child attributes
Show child attributes
Response
Paginated cloud footprint rows.
The response is of type object.

