Find an API

Search public APIs with auth details & Postman guides

← All APIs

api.datumbox.com

datumbox · AI

AI No Auth Free & Open machine_learning text

Datumbox offers a Machine Learning platform composed of 14 classifiers and Natural Language processing functions. Functions include sentiment analysis, topic classification, readability assessment, language detection, and much more.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

POST Classifies the Document as adult or noadult

The Adult Content Detection function classifies the documents as adult or noadult based on their context. It can be used to detect whether a document contains content unsuitable for minors.

https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/AdultContentDetection.json

Hover any highlighted part to learn what it does

curl -X POST "https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/AdultContentDetection.json"
import requests
response = requests.post(
    "https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/AdultContentDetection.json",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/AdultContentDetection.json';

const response = await fetch(url, {
  method: 'POST',
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/AdultContentDetection.json"
	req, _ := http.NewRequest("POST", 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/datumbox.com/1.0/1.0/AdultContentDetection.json")

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

req = Net::HTTP::Post.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/AdultContentDetection.json";
$opts = ["http" => [
    "method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST Classifies the Document as commercial or nocommercial

The Commercial Detection function labels the documents as commercial or non-commercial based on their keywords and expressions. It can be used to detect whether a website is commercial or not.

https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/CommercialDetection.json

Hover any highlighted part to learn what it does

curl -X POST "https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/CommercialDetection.json"
import requests
response = requests.post(
    "https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/CommercialDetection.json",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/CommercialDetection.json';

const response = await fetch(url, {
  method: 'POST',
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/CommercialDetection.json"
	req, _ := http.NewRequest("POST", 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/datumbox.com/1.0/1.0/CommercialDetection.json")

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

req = Net::HTTP::Post.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/CommercialDetection.json";
$opts = ["http" => [
    "method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST Estimates the similarity between 2 Documents

The Document Similarity function estimates the degree of similarity between two documents. It can be used to detect duplicate webpages or detect plagiarism.

https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/DocumentSimilarity.json

Hover any highlighted part to learn what it does

curl -X POST "https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/DocumentSimilarity.json"
import requests
response = requests.post(
    "https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/DocumentSimilarity.json",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/DocumentSimilarity.json';

const response = await fetch(url, {
  method: 'POST',
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/DocumentSimilarity.json"
	req, _ := http.NewRequest("POST", 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/datumbox.com/1.0/1.0/DocumentSimilarity.json")

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

req = Net::HTTP::Post.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/datumbox.com/1.0/1.0/DocumentSimilarity.json";
$opts = ["http" => [
    "method" => "POST",
]];
$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 api.datumbox.com?

api.datumbox.com is a AI API. Developers commonly use ai APIs for:

  • adding natural language processing to your product
  • generating images, text, or code with AI models
  • building chatbots and virtual assistants
  • running sentiment analysis on customer feedback
  • powering recommendation and personalisation engines

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