List Autonomus-systems

List Autonomus-systems

GET https://api.ocamba.com/v2/ocamba/autonomous-system
Returns a list of Autonomus-systems

Tip

Searchable fields are: aso, isp and organization.

Sortable fields are: id, asn, aso, isp and organization.

Query parameters

parameters

Response schemas

curl -X GET \
 "https://api.ocamba.com/v2/ocamba/autonomous-system" \
  -H "Authorization: Bearer {TOKEN}"
const url = 'https://api.ocamba.com/v2/ocamba/autonomous-system';
const options = {
  method: 'GET',
  headers: {
    Authorization: `Bearer {TOKEN}`
  }
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
$ch = curl_init("https://api.ocamba.com/v2/ocamba/autonomous-system");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  "Authorization: Bearer {TOKEN}"
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);

Responses

200 OK

{
  "total": 70819,
  "items": [
    {
      "id": "55734",
      "asn": 55734,
      "aso": "001 IT Complex",
      "isp": "001 IT Complex",
      "organization": "001 IT Complex"
    },
    {
      "id": "60502",
      "asn": 60502,
      "aso": "01 System Srl",
      "isp": "01 System Srl",
      "organization": "01 System Srl"
    },
    {
      "id": "209288",
      "asn": 209288,
      "aso": "020 ICT",
      "isp": "020 ICT",
      "organization": "020 ICT"
    }
  ]
}
Responses