Tatsumi-Crew API Documentation

API Usage

The Tatsumi Crew API allows you to retrieve domain information using a POST request.

URL Endpoint

http://tatsumi-crew.net/API/index.php

Method

The method used is POST.

Example parameter usage:


curl -X POST -d "ip_address=192.168.1.1&apikey=1234567890" http://tatsumi-crew.net/API/index.php
        

Response


{
    "error": 0,
    "domain": [
        ["example.com"]
    ]
}
        

Parameters

Parameter Type Description
ip_address String The IP address for which you want to retrieve domain information.
apikey String Your API key for authentication.

Response Format

The response will be a JSON object with the following fields:

Example Usage


const data = {
    ip_address: "192.168.1.1",
    apikey: "1234567890"
};

fetch('http://tatsumi-crew.net/API/index.php', {
    method: 'POST',
    body: new URLSearchParams(data),
})
.then(response => response.json())
.then(result => {
    console.log(result);
})
.catch(error => {
    console.error('Error:', error);
});