The Tatsumi Crew API allows you to retrieve domain information using a POST request.
http://tatsumi-crew.net/API/index.php
The method used is POST.
curl -X POST -d "ip_address=192.168.1.1&apikey=1234567890" http://tatsumi-crew.net/API/index.php
{
"error": 0,
"domain": [
["example.com"]
]
}
Parameter | Type | Description |
---|---|---|
ip_address | String | The IP address for which you want to retrieve domain information. |
apikey | String | Your API key for authentication. |
The response will be a JSON object with the following fields:
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);
});