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."
}Поиск облачного следа компаний
Поиск по публичной облачной и хостинговой инфраструктуре компаний: какие провайдеры, страны и регионы они используют. Одна запись — одна компания у одного провайдера в одной стране. См. руководство по поиску облачного следа.
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."
}Авторизации
Тело
Оставить только записи, соответствующие этим облачные или хостинг-провайдеры. Только в пределах этой записи следа — один провайдер, одна страна.
["AWS", "Cloudflare", "Hetzner"]
Исключить записи, соответствующие этим облачные или хостинг-провайдеры. Только в пределах этой записи следа — один провайдер, одна страна.
["AWS", "Cloudflare", "Hetzner"]
Коды стран, на которые нацелены результаты. По умолчанию сочетается с filter_conditions как OR — совпадение по любому из них.
["TW", "AE", "NO"]
Коды стран, на которые не должны быть нацелены результаты. По умолчанию сочетается с filter_conditions как OR — совпадение по любому из них.
["IS", "GB", "FR", "IE", "ES"]
Оставить только записи, соответствующие этим облачные регионы. Только в пределах этой записи следа — один провайдер, одна страна.
["us-east-1", "eu-central-1"]
Исключить записи, соответствующие этим облачные регионы. Только в пределах этой записи следа — один провайдер, одна страна.
["us-east-1", "eu-central-1"]
Оставить только записи, соответствующие этим города. Только в пределах этой записи следа — один провайдер, одна страна.
["Ashburn", "Frankfurt"]
Исключить записи, соответствующие этим города. Только в пределах этой записи следа — один провайдер, одна страна.
["Ashburn", "Frankfurt"]
Две даты в формате ISO 8601 (ГГГГ-ММ-ДД), ограничивающие период, когда след был впервые обнаружен. Только в пределах этой записи следа — один провайдер, одна страна.
2 elements["2026-01-01", null]
Две даты в формате ISO 8601 (ГГГГ-ММ-ДД), ограничивающие период, когда след был обнаружен в последний раз. Только в пределах этой записи следа — один провайдер, одна страна.
2 elements["2026-01-01", null]
Если true, возвращаются только записи за пределами домашнего рынка компании. Записи компаний без известной штаб-квартиры исключаются.
true
Минимум и максимум для хостов. Используйте 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]
Минимум и максимум для серверов (уникальных 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 на вкладке Filters.
["US", "SG", "CN"]
Идентификатор одной записи облачного следа.
"f28215e6-f6ed-40c2-ac9b-d8e70164c0be"
Идентификаторы выбранных записей облачного следа для экспорта.
["f28215e6-f6ed-40c2-ac9b-d8e70164c0be"]
Список уникальных идентификаторов (domain_search_id), используемых для операций поиска компаний и людей.
Список доменов компаний, используемых для операций поиска компаний и людей. Если получен URL вида www.pubrio.com или https://docs.pubrio.com/, система преобразует его в pubrio.com для обработки.
["pubrio.com"]
Количество записей на странице. По умолчанию — 25, что также является пределом на большинстве тарифов — лимит определяется параметром max_search_per_page вашей подписки, который возвращает Profile. Превышение возвращает HTTP 416 с кодом 41676 (или 41613 для поиска компаний и людей), а не усечённый набор результатов.
x <= 2525
Направление сортировки. По умолчанию результаты возвращаются от самых новых; установите true для сортировки от самых старых. У этого эндпоинта нет sort_by — ключ сортировки фиксирован и указан в описании эндпоинта.
false
Компании, использующие любого из этих провайдеров где угодно. providers без префикса сужает записи, этот — компании.
["AWS", "Cloudflare"]
Компании, присутствующие в любой из этих стран в любой части своего следа.
["DE", "SG"]
Компании, чей крупнейший провайдер — один из перечисленных.
["AWS"]
Домен компании, используемый для операций поиска компаний. Если получен URL вида www.pubrio.com или https://docs.pubrio.com/, система преобразует его в pubrio.com для обработки.
"pubrio.com"
Уникальный идентификатор операции поиска компаний.
Полностью сформированный URL профиля компании в 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.

