Note
You can pass the apikey in one of the following three ways:
- 1. In the GET method: you can pass parameters in the query string of the URL with param "apikey".
anime
GET api/anime/neko (0 request)
Get random neko.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/anime/neko',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/anime/neko'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/anime/neko');
$params['apikey'] = 'YOUR_API_KEY_HERE';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/anime/neko?apikey=YOUR_API_KEY_HERE"
Request parameters
Response Example
GET api/anime/trace (0 request)
Trace anime using photo url.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/anime/trace',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'ANIME_PHOTO_UTL',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/anime/trace'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'ANIME_PHOTO_UTL',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/anime/trace');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['url'] = 'ANIME_PHOTO_UTL';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/anime/trace?apikey=YOUR_API_KEY_HERE&url=ANIME_PHOTO_UTL"
Request parameters
Response Example
downloader
GET api/downloader/facebook (1 request)
Download public facebook video, reels, story.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/downloader/facebook',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'YOUR_VIDEO_URL',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/downloader/facebook'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'YOUR_VIDEO_URL',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/downloader/facebook');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['url'] = 'YOUR_VIDEO_URL';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/downloader/facebook?apikey=YOUR_API_KEY_HERE&url=YOUR_VIDEO_URL"
Request parameters
Response Example
GET api/downloader/instagram (0 request)
Public instagram video/reels url.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/downloader/instagram',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'YOUR_PUBLIC_VIDEO_URL',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/downloader/instagram'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'YOUR_PUBLIC_VIDEO_URL',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/downloader/instagram');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['url'] = 'YOUR_PUBLIC_VIDEO_URL';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/downloader/instagram?apikey=YOUR_API_KEY_HERE&url=YOUR_PUBLIC_VIDEO_URL"
Request parameters
Response Example
GET api/downloader/terabox (0 request)
Terabox link extractor.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/downloader/terabox',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'YOUR_TERABOX_URL',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/downloader/terabox'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'YOUR_TERABOX_URL',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/downloader/terabox');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['url'] = 'YOUR_TERABOX_URL';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/downloader/terabox?apikey=YOUR_API_KEY_HERE&url=YOUR_TERABOX_URL"
Request parameters
Response Example
GET api/downloader/twitter (0 request)
Download twitter videos.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/downloader/twitter',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'YOUR_PUBLIC_VIDEO_URL',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/downloader/twitter'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'YOUR_PUBLIC_VIDEO_URL',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/downloader/twitter');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['url'] = 'YOUR_PUBLIC_VIDEO_URL';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/downloader/twitter?apikey=YOUR_API_KEY_HERE&url=YOUR_PUBLIC_VIDEO_URL"
Request parameters
Response Example
GET api/downloader/youtube (0 request)
Download youtube public videos and shorts.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/downloader/youtube',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'YOUR_VIDEO_URL',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/downloader/youtube'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'YOUR_VIDEO_URL',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/downloader/youtube');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['url'] = 'YOUR_VIDEO_URL';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/downloader/youtube?apikey=YOUR_API_KEY_HERE&url=YOUR_VIDEO_URL"
Request parameters
Response Example
image
GET api/image/screenshot (0 request)
Take screenshot from any url or get results from google.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/image/screenshot',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'q': 'YOUR_URL/TEXT',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/image/screenshot'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'q': 'YOUR_URL/TEXT',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/image/screenshot');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['q'] = 'YOUR_URL%2FTEXT';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/image/screenshot?apikey=YOUR_API_KEY_HERE&q=YOUR_URL%2FTEXT"
Request parameters
Response Example
sports
GET api/sports/match (0 request)
Get match list.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/sports/match',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/sports/match'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/sports/match');
$params['apikey'] = 'YOUR_API_KEY_HERE';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/sports/match?apikey=YOUR_API_KEY_HERE"
Request parameters
Response Example
GET api/sports/score (0 request)
Get match live score.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/sports/score',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'MATCH_URL_HERE',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/sports/score'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'url': 'MATCH_URL_HERE',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/sports/score');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['url'] = 'MATCH_URL_HERE';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/sports/score?apikey=YOUR_API_KEY_HERE&url=MATCH_URL_HERE"
Request parameters
Response Example
tools
GET api/tools/bin (0 request)
Get information from bin.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/tools/bin',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'bin': 'YOUR_6_DIGIT_BIN',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/tools/bin'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'bin': 'YOUR_6_DIGIT_BIN',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/tools/bin');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['bin'] = 'YOUR_6_DIGIT_BIN';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/tools/bin?apikey=YOUR_API_KEY_HERE&bin=YOUR_6_DIGIT_BIN"
Request parameters
Response Example
GET api/tools/device (0 request)
Get android device full details.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/tools/device',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'search': 'DEVICE_NAME',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/tools/device'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'search': 'DEVICE_NAME',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/tools/device');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['search'] = 'DEVICE_NAME';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/tools/device?apikey=YOUR_API_KEY_HERE&search=DEVICE_NAME"
Request parameters
Response Example
GET api/tools/imei (0 request)
Get device information from imei number.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/tools/imei',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'imei': 'YOUR_IMEI_NO',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/tools/imei'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'imei': 'YOUR_IMEI_NO',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/tools/imei');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['imei'] = 'YOUR_IMEI_NO';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/tools/imei?apikey=YOUR_API_KEY_HERE&imei=YOUR_IMEI_NO"
Request parameters
Response Example
GET api/tools/sms (-1 request)
Anonymous sms sender
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/tools/sms',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'number': 'PHONE_NUMBER',
'message': 'YOUR_MESSAGE',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/tools/sms'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'number': 'PHONE_NUMBER',
'message': 'YOUR_MESSAGE',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/tools/sms');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['number'] = 'PHONE_NUMBER';
$params['message'] = 'YOUR_MESSAGE';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/tools/sms?apikey=YOUR_API_KEY_HERE&number=PHONE_NUMBER&message=YOUR_MESSAGE"
Request parameters
Response Example
v1
GET api/v1/simitalk (0 request)
Chat with simsimi.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/v1/simitalk',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'ask': 'YOUR_TEXT',
'lc': 'LANGUAGE_CODE',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/v1/simitalk'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'ask': 'YOUR_TEXT',
'lc': 'LANGUAGE_CODE',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/v1/simitalk');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['ask'] = 'YOUR_TEXT';
$params['lc'] = 'LANGUAGE_CODE';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/v1/simitalk?apikey=YOUR_API_KEY_HERE&ask=YOUR_TEXT&lc=LANGUAGE_CODE"
Request parameters
Response Example
GET api/v1/simiteach (0 request)
Teach anything to simsimi.
const axios = require('axios');
(async () => {
try {
const response = await axios({
url: 'https://api.anbuinfosec.xyz/api/v1/simiteach',
method: 'GET',
params: {
'apikey': 'YOUR_API_KEY_HERE',
'ask': 'YOUR_TEXT',
'ans': 'ANS',
'lc': 'LANGUAGE_CODE',
}
});
console.log(response.data);
}
catch (error) {
console.log(error);
}
})();
import requests
url = 'https://api.anbuinfosec.xyz/api/v1/simiteach'
querystring = {
'apikey': 'YOUR_API_KEY_HERE',
'ask': 'YOUR_TEXT',
'ans': 'ANS',
'lc': 'LANGUAGE_CODE',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.anbuinfosec.xyz/api/v1/simiteach');
$params['apikey'] = 'YOUR_API_KEY_HERE';
$params['ask'] = 'YOUR_TEXT';
$params['ans'] = 'ANS';
$params['lc'] = 'LANGUAGE_CODE';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash
curl -X GET "https://api.anbuinfosec.xyz/api/v1/simiteach?apikey=YOUR_API_KEY_HERE&ask=YOUR_TEXT&ans=ANS&lc=LANGUAGE_CODE"