IX-API
ix-api · Security
This API allows to config/change/delete Internet Exchange services. # Filters When querying collections, the provided query parameters are validated. Unknown query parameters are ignored. Providing invalid filter values should yield a validation error.
Authentication
Sample Requests
Retrieve a list of `Account`s. This includes all accounts the currently authorized account is managing and the current account itself.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/ix-api.net/2.1.0/accounts?id=id1%2Cid2%2Cid3&name=test&state=example&billable=1&external_ref=example&state__is_not=example&managing_account=example"
import requests
params = {
"id": "id1,id2,id3",
"name": "test",
"state": "example",
"billable": "1",
"external_ref": "example",
"state__is_not": "example",
"managing_account": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/ix-api.net/2.1.0/accounts",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/ix-api.net/2.1.0/accounts');
url.searchParams.set('id', 'id1,id2,id3');
url.searchParams.set('name', 'test');
url.searchParams.set('state', 'example');
url.searchParams.set('billable', '1');
url.searchParams.set('external_ref', 'example');
url.searchParams.set('state__is_not', 'example');
url.searchParams.set('managing_account', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/ix-api.net/2.1.0/accounts")
q := baseURL.Query()
q.Set("id", "id1,id2,id3")
q.Set("name", "test")
q.Set("state", "example")
q.Set("billable", "1")
q.Set("external_ref", "example")
q.Set("state__is_not", "example")
q.Set("managing_account", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/ix-api.net/2.1.0/accounts")
uri.query = URI.encode_www_form({
"id" => "id1,id2,id3",
"name" => "test",
"state" => "example",
"billable" => "1",
"external_ref" => "example",
"state__is_not" => "example",
"managing_account" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/ix-api.net/2.1.0/accounts?" . http_build_query([
"id" => "id1,id2,id3",
"name" => "test",
"state" => "example",
"billable" => "1",
"external_ref" => "example",
"state__is_not" => "example",
"managing_account" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));List all `connection`s.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/ix-api.net/2.1.0/connections?id=id1%2Cid2%2Cid3&pop=example&mode=example&name=test&state=example&facility=example&external_ref=example&mode__is_not=example&state__is_not=example&metro_area_network=example"
import requests
params = {
"id": "id1,id2,id3",
"pop": "example",
"mode": "example",
"name": "test",
"state": "example",
"facility": "example",
"external_ref": "example",
"mode__is_not": "example",
"state__is_not": "example",
"metro_area_network": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/ix-api.net/2.1.0/connections",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/ix-api.net/2.1.0/connections');
url.searchParams.set('id', 'id1,id2,id3');
url.searchParams.set('pop', 'example');
url.searchParams.set('mode', 'example');
url.searchParams.set('name', 'test');
url.searchParams.set('state', 'example');
url.searchParams.set('facility', 'example');
url.searchParams.set('external_ref', 'example');
url.searchParams.set('mode__is_not', 'example');
url.searchParams.set('state__is_not', 'example');
url.searchParams.set('metro_area_network', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/ix-api.net/2.1.0/connections")
q := baseURL.Query()
q.Set("id", "id1,id2,id3")
q.Set("pop", "example")
q.Set("mode", "example")
q.Set("name", "test")
q.Set("state", "example")
q.Set("facility", "example")
q.Set("external_ref", "example")
q.Set("mode__is_not", "example")
q.Set("state__is_not", "example")
q.Set("metro_area_network", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/ix-api.net/2.1.0/connections")
uri.query = URI.encode_www_form({
"id" => "id1,id2,id3",
"pop" => "example",
"mode" => "example",
"name" => "test",
"state" => "example",
"facility" => "example",
"external_ref" => "example",
"mode__is_not" => "example",
"state__is_not" => "example",
"metro_area_network" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/ix-api.net/2.1.0/connections?" . http_build_query([
"id" => "id1,id2,id3",
"pop" => "example",
"mode" => "example",
"name" => "test",
"state" => "example",
"facility" => "example",
"external_ref" => "example",
"mode__is_not" => "example",
"state__is_not" => "example",
"metro_area_network" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));List available contacts managed by the authorized account.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/ix-api.net/2.1.0/contacts?id=id1%2Cid2%2Cid3&external_ref=example&managing_account=example&consuming_account=example"
import requests
params = {
"id": "id1,id2,id3",
"external_ref": "example",
"managing_account": "example",
"consuming_account": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/ix-api.net/2.1.0/contacts",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/ix-api.net/2.1.0/contacts');
url.searchParams.set('id', 'id1,id2,id3');
url.searchParams.set('external_ref', 'example');
url.searchParams.set('managing_account', 'example');
url.searchParams.set('consuming_account', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/ix-api.net/2.1.0/contacts")
q := baseURL.Query()
q.Set("id", "id1,id2,id3")
q.Set("external_ref", "example")
q.Set("managing_account", "example")
q.Set("consuming_account", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/ix-api.net/2.1.0/contacts")
uri.query = URI.encode_www_form({
"id" => "id1,id2,id3",
"external_ref" => "example",
"managing_account" => "example",
"consuming_account" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/ix-api.net/2.1.0/contacts?" . http_build_query([
"id" => "id1,id2,id3",
"external_ref" => "example",
"managing_account" => "example",
"consuming_account" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with IX-API?
IX-API is a Security API. Developers commonly use security APIs for:
- adding multi-factor authentication to your app
- validating identity documents and biometrics
- monitoring for data breaches and leaked credentials
- running background checks and fraud screening
- scanning code and infrastructure for vulnerabilities
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. IX-API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?