1.0.7 • Published 3 years ago

syapi v1.0.7

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

SinkingYachts Phishing Domain API

SinkingYachts Phishing Domain API JavaScript Unofficial Wrapper - https://phish.sinking.yachts/docs

Installing

NPM (recommended)

# Stable
npm i --save syapi

Yarn

# Stable
yarn add syapi

Functions

Request Domain

const { Client } = require('syapi');
const api = new Client();

api.fetchDomain("https://google.com").then(function (response) {
    console.log(response);
});

Fetch All Domains

const { Client } = require('syapi');
const api = new Client();

api.fetchAllDomains().then(function (response) {
    console.log(response);
});

Fetch Recent Domains

const { Client } = require('syapi');
const api = new Client();

api.fetchRecentDomains(10000).then(function (response) {
    console.log(response);
});

Fetch Database Size

const { Client } = require('syapi');
const api = new Client();

api.DBSize().then(function (response) {
    console.log(response);
});
1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago