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": "エラーの背景やフィールド単位の情報などを含む追加データオブジェクトです。",
"details": {}
}{
"error": "クライアントはしばらく待ってから再試行することが推奨されます。"
}{
"error": "レスポンスボディには `error` フィールドが含まれ、問題の概要がメッセージとして記載されます。"
}企業クラウドフットプリント検索
企業が公開しているクラウド・ホスティングの利用状況を検索します。どのプロバイダーを使い、どの国・リージョンに展開しているか。1 行は「1 社 × 1 プロバイダー × 1 か国」です。 クラウドフットプリント検索ガイドを参照。
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": "エラーの背景やフィールド単位の情報などを含む追加データオブジェクトです。",
"details": {}
}{
"error": "クライアントはしばらく待ってから再試行することが推奨されます。"
}{
"error": "レスポンスボディには `error` フィールドが含まれ、問題の概要がメッセージとして記載されます。"
}承認
ボディ
これらのクラウド/ホスティングプロバイダーに一致するフットプリント行のみを返します。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
["AWS", "Cloudflare", "Hetzner"]
これらのクラウド/ホスティングプロバイダーに一致するフットプリント行を除外します。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
["AWS", "Cloudflare", "Hetzner"]
結果が対象とする国コード。既定では filter_conditions と OR で結合し、いずれかに該当すれば一致します。
["TW", "AE", "NO"]
結果が対象としない国コード。既定では filter_conditions と OR で結合し、いずれかに該当すれば一致します。
["IS", "GB", "FR", "IE", "ES"]
これらのクラウドリージョンに一致するフットプリント行のみを返します。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
["us-east-1", "eu-central-1"]
これらのクラウドリージョンに一致するフットプリント行を除外します。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
["us-east-1", "eu-central-1"]
これらの都市に一致するフットプリント行のみを返します。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
["Ashburn", "Frankfurt"]
これらの都市に一致するフットプリント行を除外します。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
["Ashburn", "Frankfurt"]
フットプリントが最初に検出された時期を区切る 2 つの ISO 8601 日付(YYYY-MM-DD)。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
2 elements["2026-01-01", null]
フットプリントが最後に検出された時期を区切る 2 つの ISO 8601 日付(YYYY-MM-DD)。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
2 elements["2026-01-01", null]
true の場合、自国市場以外のフットプリント行のみを返します。本社所在地が不明な企業の行は除外されます。
true
ホスト数の最小値と最大値。上限または下限を設けない場合は null を使用します。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
2 elements[1, null]
サーバー数(一意の IP)の最小値と最大値。上限または下限を設けない場合は null を使用します。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
2 elements[1, null]
他社と共有するサーバー数の最小値と最大値。上限または下限を設けない場合は null を使用します。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
2 elements[1, null]
クラウドリージョン数の最小値と最大値。上限または下限を設けない場合は null を使用します。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
2 elements[1, null]
都市数の最小値と最大値。上限または下限を設けない場合は null を使用します。 このフットプリント行(1 プロバイダー × 1 か国)に限定されます。
2 elements[1, null]
ホスト数の最小値と最大値。上限または下限を設けない場合は null を使用します。 企業全体(すべてのプロバイダーと国)で集計されます。
2 elements[1, null]
サーバー数(一意の IP)の最小値と最大値。上限または下限を設けない場合は null を使用します。 企業全体(すべてのプロバイダーと国)で集計されます。
2 elements[1, null]
他社と共有するサーバー数の最小値と最大値。上限または下限を設けない場合は null を使用します。 企業全体(すべてのプロバイダーと国)で集計されます。
2 elements[1, null]
企業が利用するプロバイダー数の最小値と最大値。上限または下限を設けない場合は null を使用します。 企業全体(すべてのプロバイダーと国)で集計されます。
2 elements[1, null]
企業がホスティングする国数の最小値と最大値。上限または下限を設けない場合は null を使用します。 企業全体(すべてのプロバイダーと国)で集計されます。
2 elements[1, null]
自国市場以外の国数の最小値と最大値。上限または下限を設けない場合は null を使用します。 企業全体(すべてのプロバイダーと国)で集計されます。
2 elements[1, null]
クラウドリージョン数の最小値と最大値。上限または下限を設けない場合は null を使用します。 企業全体(すべてのプロバイダーと国)で集計されます。
2 elements[1, null]
都市数の最小値と最大値。上限または下限を設けない場合は null を使用します。 企業全体(すべてのプロバイダーと国)で集計されます。
2 elements[1, null]
企業本社の所在地を示すフィルターです。
["US", "SG", "CN"]
単一のクラウドフットプリント行の識別子。
"f28215e6-f6ed-40c2-ac9b-d8e70164c0be"
エクスポート対象として選択したクラウドフットプリント行の識別子。
["f28215e6-f6ed-40c2-ac9b-d8e70164c0be"]
企業および人物検索処理で利用する domain_search_id の一覧です。
企業および人物検索に使用する会社ドメインの一覧です。www や URL スキームが含まれる場合も、自動的にルートドメインへ正規化されます。
["pubrio.com"]
並び順です。デフォルトは新しい順で返され、true にすると古い順になります。このエンドポイントに sort_by はなく、ソートキーは固定でエンドポイントの説明に記載しています。
false
いずれかのプロバイダーをどこかで利用している企業。接頭辞なしの providers は返る行を、こちらは企業を絞り込みます。
["AWS", "Cloudflare"]
フットプリントのいずれかでこれらの国に存在する企業。
["DE", "SG"]
最大のプロバイダーがこれらのいずれかである企業。
["AWS"]
企業ルックアップに使用する会社ドメインです。www.pubrio.com や https://docs.pubrio.com/ のような値が指定された場合、自動的に pubrio.com に正規化されます。
"pubrio.com"
企業検索系の処理を紐づけるための一意の識別子です。
企業の LinkedIn 公式ページを指す完全な URL です。値は http で始まり、linkedin.com/company/ を含んでいる必要があります。
["https://www.linkedin.com/company/pubrio"]
配列フィルターを OR(既定:いずれかに一致)から AND(すべてに一致)へ切り替えます。cloud_regions、exclude_cloud_regions、cities、exclude_cities に適用されます。
Show child attributes
Show child attributes
レスポンス
ページネーションされたクラウドフットプリント行。
The response is of type object.

