KumpeApps API
kumpeapps · Company
KKid API. Due to security concerns all calls to this API requires authentication. If you have access then you may use your KumpeApps username/password to authenticate. To gain access please use the contact developer link below.
Authentication
Sample Requests
Obtain auth key for user that has provided their username and password to login to your app. (or to obtain an auth key for a script like IFTTT)
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/kumpeapps.com/5.0.0/authentication/authkey?otp=example&password=example&username=testuser&deviceName=example&identifierForVendor=example"
import requests
params = {
"otp": "example",
"password": "example",
"username": "testuser",
"deviceName": "example",
"identifierForVendor": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/kumpeapps.com/5.0.0/authentication/authkey",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/kumpeapps.com/5.0.0/authentication/authkey');
url.searchParams.set('otp', 'example');
url.searchParams.set('password', 'example');
url.searchParams.set('username', 'testuser');
url.searchParams.set('deviceName', 'example');
url.searchParams.set('identifierForVendor', '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/kumpeapps.com/5.0.0/authentication/authkey")
q := baseURL.Query()
q.Set("otp", "example")
q.Set("password", "example")
q.Set("username", "testuser")
q.Set("deviceName", "example")
q.Set("identifierForVendor", "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/kumpeapps.com/5.0.0/authentication/authkey")
uri.query = URI.encode_www_form({
"otp" => "example",
"password" => "example",
"username" => "testuser",
"deviceName" => "example",
"identifierForVendor" => "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/kumpeapps.com/5.0.0/authentication/authkey?" . http_build_query([
"otp" => "example",
"password" => "example",
"username" => "testuser",
"deviceName" => "example",
"identifierForVendor" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Verifies YubiKey OTP for authenticated user
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/kumpeapps.com/5.0.0/authentication/verifyotp?otp=example"
import requests
params = {
"otp": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/kumpeapps.com/5.0.0/authentication/verifyotp",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/kumpeapps.com/5.0.0/authentication/verifyotp');
url.searchParams.set('otp', '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/kumpeapps.com/5.0.0/authentication/verifyotp")
q := baseURL.Query()
q.Set("otp", "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/kumpeapps.com/5.0.0/authentication/verifyotp")
uri.query = URI.encode_www_form({
"otp" => "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/kumpeapps.com/5.0.0/authentication/verifyotp?" . http_build_query([
"otp" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));By passing in the appropriate options, you can view allowance balance and allowance transactions for a given user provided that they are within the masterID account of the authenticated user.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/kumpeapps.com/5.0.0/kkid/allowance?kidUserId=1&transactionDays=1"
import requests
params = {
"kidUserId": "1",
"transactionDays": "1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/kumpeapps.com/5.0.0/kkid/allowance",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/kumpeapps.com/5.0.0/kkid/allowance');
url.searchParams.set('kidUserId', '1');
url.searchParams.set('transactionDays', '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/kumpeapps.com/5.0.0/kkid/allowance")
q := baseURL.Query()
q.Set("kidUserId", "1")
q.Set("transactionDays", "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/kumpeapps.com/5.0.0/kkid/allowance")
uri.query = URI.encode_www_form({
"kidUserId" => "1",
"transactionDays" => "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/kumpeapps.com/5.0.0/kkid/allowance?" . http_build_query([
"kidUserId" => "1",
"transactionDays" => "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
- See official documentation for authentication and setup.
What can you build with KumpeApps API?
KumpeApps 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. KumpeApps 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?