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": "요청을 처리하는 중 서버에서 예기치 않은 오류가 발생했습니다"
}기업 클라우드 풋프린트 검색
기업이 공개적으로 드러내는 클라우드·호스팅 사용 현황을 검색합니다. 어떤 제공업체를 쓰고 어느 국가·리전에 배포했는지. 각 행은 기업 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": "요청을 처리하는 중 서버에서 예기치 않은 오류가 발생했습니다"
}본문
이 클라우드·호스팅 제공업체과(와) 일치하는 풋프린트 행만 반환합니다. 이 풋프린트 행(제공업체 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"]
풋프린트가 처음 확인된 시점을 한정하는 두 개의 ISO 8601 날짜(YYYY-MM-DD). 이 풋프린트 행(제공업체 1곳 × 국가 1곳)에 한정됩니다.
2 elements["2026-01-01", null]
풋프린트가 마지막으로 확인된 시점을 한정하는 두 개의 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]
회사 본사 위치입니다. 자세한 내용은 필터 탭의 location 엔드포인트를 참고하세요.
["US", "SG", "CN"]
단일 클라우드 풋프린트 행의 식별자.
"f28215e6-f6ed-40c2-ac9b-d8e70164c0be"
내보낼 특정 클라우드 풋프린트 행의 식별자.
["f28215e6-f6ed-40c2-ac9b-d8e70164c0be"]
회사 및 인물 조회 작업을 위한 고유 식별자(domain_search_id) 목록.
회사 및 인물 조회 작업에 사용되는 회사 도메인 목록입니다. 입력된 주소가 www.pubrio.com 또는 https://docs.pubrio.com/인 경우, 시스템은 이를 자동으로 pubrio.com으로 변환하여 처리합니다.
["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.

