Find an API

Search public APIs with auth details & Postman guides

← All APIs

Public Api

combell · Company

Company No Auth Free & Open hosting

# Introduction This API allows resellers to manage their resources in a simple, programmatic way using HTTP requests. # Conventions ## Requests The API supports different methods depending on the required action. | Method | Description | --- | --- | GET | Retrieve resources in a collection or get a single resource. Getters will never have any effect on the queried resources. | POST | Create a new resource in a collection. | PUT | Update an existing resource with its new representati

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Overview of accounts

Overview of accounts

https://api.apis.guru/v2/specs/combell.com/v2/accounts?skip=1&take=1&asset_type=example&identifier=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/combell.com/v2/accounts?skip=1&take=1&asset_type=example&identifier=example"
import requests
params = {
    "skip": "1",
    "take": "1",
    "asset_type": "example",
    "identifier": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/combell.com/v2/accounts",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/combell.com/v2/accounts');
url.searchParams.set('skip', '1');
url.searchParams.set('take', '1');
url.searchParams.set('asset_type', 'example');
url.searchParams.set('identifier', '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/combell.com/v2/accounts")
	q := baseURL.Query()
	q.Set("skip", "1")
	q.Set("take", "1")
	q.Set("asset_type", "example")
	q.Set("identifier", "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/combell.com/v2/accounts")
uri.query = URI.encode_www_form({
  "skip" => "1",
  "take" => "1",
  "asset_type" => "example",
  "identifier" => "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/combell.com/v2/accounts?" . http_build_query([
    "skip" => "1",
    "take" => "1",
    "asset_type" => "example",
    "identifier" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Overviews of domains

Overviews of domains

https://api.apis.guru/v2/specs/combell.com/v2/domains?skip=1&take=1

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/combell.com/v2/domains?skip=1&take=1"
import requests
params = {
    "skip": "1",
    "take": "1"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/combell.com/v2/domains",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/combell.com/v2/domains');
url.searchParams.set('skip', '1');
url.searchParams.set('take', '1');

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/combell.com/v2/domains")
	q := baseURL.Query()
	q.Set("skip", "1")
	q.Set("take", "1")
	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/combell.com/v2/domains")
uri.query = URI.encode_www_form({
  "skip" => "1",
  "take" => "1"
})

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/combell.com/v2/domains?" . http_build_query([
    "skip" => "1",
    "take" => "1"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Overview of linux hostings

Overview of linux hostings

https://api.apis.guru/v2/specs/combell.com/v2/linuxhostings?skip=1&take=1

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/combell.com/v2/linuxhostings?skip=1&take=1"
import requests
params = {
    "skip": "1",
    "take": "1"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/combell.com/v2/linuxhostings",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/combell.com/v2/linuxhostings');
url.searchParams.set('skip', '1');
url.searchParams.set('take', '1');

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/combell.com/v2/linuxhostings")
	q := baseURL.Query()
	q.Set("skip", "1")
	q.Set("take", "1")
	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/combell.com/v2/linuxhostings")
uri.query = URI.encode_www_form({
  "skip" => "1",
  "take" => "1"
})

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/combell.com/v2/linuxhostings?" . http_build_query([
    "skip" => "1",
    "take" => "1"
]);
$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

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

What can you build with Public Api?

Public Api is a Company API. Developers commonly use company APIs for:

  • enriching CRM records with company firmographics
  • building lead-generation and prospecting tools
  • verifying business identity and registration details
  • monitoring competitors and market intelligence
  • powering B2B data enrichment pipelines

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Public 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?

Open documentation ↗