Find an API

Search public APIs with auth details & Postman guides

← All APIs

ProxyKingdom-Api

proxykingdom · Developer Tools

Developer Tools No Auth Free & Open developer_tools

ProxyKingdom-Api API

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Gets a random proxy for chosen parameters.

Gets a random proxy for chosen parameters.

https://api.apis.guru/v2/specs/proxykingdom.com/v1/proxy?Port=example&IsSsl=example&Token=YOUR_TOKEN&Uptime=example&Address=example&Country=US&Protocol=example&Timezone=example&Continent=example&AccessType=example&LastTested=example&ResponseTime=example

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
correlation_id d85ab6a3-51a9-4359-b9d3-41f5dffb366e
curl -X GET "https://api.apis.guru/v2/specs/proxykingdom.com/v1/proxy?Port=example&IsSsl=example&Token=YOUR_TOKEN&Uptime=example&Address=example&Country=US&Protocol=example&Timezone=example&Continent=example&AccessType=example&LastTested=example&ResponseTime=example" \
  -H "correlation_id: d85ab6a3-51a9-4359-b9d3-41f5dffb366e"
import requests
params = {
    "Port": "example",
    "IsSsl": "example",
    "Token": "YOUR_TOKEN",
    "Uptime": "example",
    "Address": "example",
    "Country": "US",
    "Protocol": "example",
    "Timezone": "example",
    "Continent": "example",
    "AccessType": "example",
    "LastTested": "example",
    "ResponseTime": "example"
}
headers = {
    "correlation_id": "d85ab6a3-51a9-4359-b9d3-41f5dffb366e"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/proxykingdom.com/v1/proxy",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/proxykingdom.com/v1/proxy');
url.searchParams.set('Port', 'example');
url.searchParams.set('IsSsl', 'example');
url.searchParams.set('Token', 'YOUR_TOKEN');
url.searchParams.set('Uptime', 'example');
url.searchParams.set('Address', 'example');
url.searchParams.set('Country', 'US');
url.searchParams.set('Protocol', 'example');
url.searchParams.set('Timezone', 'example');
url.searchParams.set('Continent', 'example');
url.searchParams.set('AccessType', 'example');
url.searchParams.set('LastTested', 'example');
url.searchParams.set('ResponseTime', 'example');

const response = await fetch(url, {
  headers: {
    'correlation_id': 'd85ab6a3-51a9-4359-b9d3-41f5dffb366e'
  },
}); 
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/proxykingdom.com/v1/proxy")
	q := baseURL.Query()
	q.Set("Port", "example")
	q.Set("IsSsl", "example")
	q.Set("Token", "YOUR_TOKEN")
	q.Set("Uptime", "example")
	q.Set("Address", "example")
	q.Set("Country", "US")
	q.Set("Protocol", "example")
	q.Set("Timezone", "example")
	q.Set("Continent", "example")
	q.Set("AccessType", "example")
	q.Set("LastTested", "example")
	q.Set("ResponseTime", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)
	req.Header.Set("correlation_id", "d85ab6a3-51a9-4359-b9d3-41f5dffb366e")

	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/proxykingdom.com/v1/proxy")
uri.query = URI.encode_www_form({
  "Port" => "example",
  "IsSsl" => "example",
  "Token" => "YOUR_TOKEN",
  "Uptime" => "example",
  "Address" => "example",
  "Country" => "US",
  "Protocol" => "example",
  "Timezone" => "example",
  "Continent" => "example",
  "AccessType" => "example",
  "LastTested" => "example",
  "ResponseTime" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)
req["correlation_id"] = "d85ab6a3-51a9-4359-b9d3-41f5dffb366e"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/proxykingdom.com/v1/proxy?" . http_build_query([
    "Port" => "example",
    "IsSsl" => "example",
    "Token" => "YOUR_TOKEN",
    "Uptime" => "example",
    "Address" => "example",
    "Country" => "US",
    "Protocol" => "example",
    "Timezone" => "example",
    "Continent" => "example",
    "AccessType" => "example",
    "LastTested" => "example",
    "ResponseTime" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
    "header" => implode("\r\n", [
        "correlation_id: d85ab6a3-51a9-4359-b9d3-41f5dffb366e"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with ProxyKingdom-Api?

ProxyKingdom-Api is a Developer Tools API. Developers commonly use developer tools APIs for:

  • automating code review and quality checks
  • integrating CI/CD pipelines and build systems
  • managing feature flags and A/B tests
  • monitoring errors and application performance
  • generating and validating test data

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. ProxyKingdom-Api is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗