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."
}Cloud-Footprint durchsuchen
Durchsuchen Sie den öffentlichen Cloud- und Hosting-Footprint von Unternehmen: welche Anbieter sie nutzen und in welchen Ländern und Regionen sie betreiben. Jede Zeile steht für ein Unternehmen bei einem Anbieter in einem Land. Siehe den Leitfaden zur Cloud-Footprint-Suche.
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."
}Autorisierungen
Body
Nur Zeilen zurückgeben, die diesen Cloud- oder Hosting-Anbietern entsprechen. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
["AWS", "Cloudflare", "Hetzner"]
Zeilen ausschließen, die diesen Cloud- oder Hosting-Anbietern entsprechen. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
["AWS", "Cloudflare", "Hetzner"]
Ländercodes, auf die die Ergebnisse zielen müssen. Wird standardmäßig als OR mit filter_conditions kombiniert — ein Treffer genügt.
["TW", "AE", "NO"]
Ländercodes, auf die die Ergebnisse nicht zielen dürfen. Wird standardmäßig als OR mit filter_conditions kombiniert — ein Treffer genügt.
["IS", "GB", "FR", "IE", "ES"]
Nur Zeilen zurückgeben, die diesen Cloud-Regionen entsprechen. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
["us-east-1", "eu-central-1"]
Zeilen ausschließen, die diesen Cloud-Regionen entsprechen. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
["us-east-1", "eu-central-1"]
Nur Zeilen zurückgeben, die diesen Städten entsprechen. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
["Ashburn", "Frankfurt"]
Zeilen ausschließen, die diesen Städten entsprechen. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
["Ashburn", "Frankfurt"]
Zwei ISO-8601-Daten (JJJJ-MM-TT), die eingrenzen, wann der Footprint erstmals gesehen wurde. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
2 elements["2026-01-01", null]
Zwei ISO-8601-Daten (JJJJ-MM-TT), die eingrenzen, wann der Footprint zuletzt gesehen wurde. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
2 elements["2026-01-01", null]
Bei true werden nur Zeilen außerhalb des Heimatmarkts zurückgegeben. Zeilen ohne bekannten Unternehmenssitz entfallen.
true
Minimum und Maximum für Hosts. null lässt eine Grenze offen. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
2 elements[1, null]
Minimum und Maximum für Server (eindeutige IPs). null lässt eine Grenze offen. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
2 elements[1, null]
Minimum und Maximum für mit anderen Unternehmen geteilten Servern. null lässt eine Grenze offen. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
2 elements[1, null]
Minimum und Maximum für Cloud-Regionen. null lässt eine Grenze offen. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
2 elements[1, null]
Minimum und Maximum für Städten. null lässt eine Grenze offen. Bezieht sich nur auf diese Footprint-Zeile — ein Anbieter in einem Land.
2 elements[1, null]
Minimum und Maximum für Hosts. null lässt eine Grenze offen. Zählt für das gesamte Unternehmen, über alle Anbieter und Länder.
2 elements[1, null]
Minimum und Maximum für Server (eindeutige IPs). null lässt eine Grenze offen. Zählt für das gesamte Unternehmen, über alle Anbieter und Länder.
2 elements[1, null]
Minimum und Maximum für mit anderen Unternehmen geteilten Servern. null lässt eine Grenze offen. Zählt für das gesamte Unternehmen, über alle Anbieter und Länder.
2 elements[1, null]
Minimum und Maximum für verschiedenen Anbietern des Unternehmens. null lässt eine Grenze offen. Zählt für das gesamte Unternehmen, über alle Anbieter und Länder.
2 elements[1, null]
Minimum und Maximum für Ländern, in denen das Unternehmen hostet. null lässt eine Grenze offen. Zählt für das gesamte Unternehmen, über alle Anbieter und Länder.
2 elements[1, null]
Minimum und Maximum für Ländern außerhalb des Heimatmarkts. null lässt eine Grenze offen. Zählt für das gesamte Unternehmen, über alle Anbieter und Länder.
2 elements[1, null]
Minimum und Maximum für Cloud-Regionen. null lässt eine Grenze offen. Zählt für das gesamte Unternehmen, über alle Anbieter und Länder.
2 elements[1, null]
Minimum und Maximum für Städten. null lässt eine Grenze offen. Zählt für das gesamte Unternehmen, über alle Anbieter und Länder.
2 elements[1, null]
Der Standort des Unternehmenshauptsitzes. Weitere Informationen finden Sie über die Endpunkte location im Filters-Tab.
["US", "SG", "CN"]
Kennung einer einzelnen Cloud-Footprint-Zeile.
"f28215e6-f6ed-40c2-ac9b-d8e70164c0be"
Kennungen ausgewählter Zeilen für den Export.
["f28215e6-f6ed-40c2-ac9b-d8e70164c0be"]
Eine Liste eindeutiger Kennungen (domain_search_id) für Unternehmens- und Personensuchvorgänge.
Liste von Unternehmensdomains für Unternehmens- und Personensuchvorgänge. Erhalten wir eine URL wie www.pubrio.com oder https://docs.pubrio.com/, wandelt das System diese zur Verarbeitung in pubrio.com um.
["pubrio.com"]
Datensätze pro Seite. Standardmäßig 25, was bei den meisten Tarifen auch die Obergrenze ist — das Limit ist der max_search_per_page-Wert Ihres Abonnements, zurückgegeben von Profile. Bei Überschreitung wird HTTP 416 mit dem Code 41676 (oder 41613 bei der Unternehmens- und Personensuche) zurückgegeben, keine begrenzte Ergebnismenge.
x <= 2525
Sortierrichtung. Ergebnisse werden standardmäßig neueste zuerst zurückgegeben; setzen Sie true für älteste zuerst. Dieser Endpunkt kennt kein sort_by – der Sortierschlüssel ist fest und in der Endpunktbeschreibung angegeben.
false
Unternehmen, die einen dieser Anbieter irgendwo nutzen. Das präfixlose providers grenzt die Zeilen ein, dieses die Unternehmen.
["AWS", "Cloudflare"]
Unternehmen, die in einem dieser Länder irgendwo in ihrem Footprint präsent sind.
["DE", "SG"]
Unternehmen, deren größter Anbieter einer davon ist.
["AWS"]
Eine Unternehmensdomain für Unternehmenssuchvorgänge. Erhalten wir eine URL wie www.pubrio.com oder https://docs.pubrio.com/, wandelt das System diese zur Verarbeitung in pubrio.com um.
"pubrio.com"
Eine eindeutige Kennung für den Unternehmenssuchvorgang.
Die vollständige URL des LinkedIn-Unternehmensprofils. Die URL beginnt mit http und enthält linkedin.com/company/
["https://www.linkedin.com/company/pubrio"]
Schaltet einen Array-Filter von OR (Standard: irgendein Wert) auf AND (alle Werte) um. Gilt für cloud_regions, exclude_cloud_regions, cities und exclude_cities.
Show child attributes
Show child attributes
Antwort
Seitenweise Cloud-Footprint-Zeilen.
The response is of type object.

