1.0.7 • Published 4 years ago

syapi v1.0.7

Weekly downloads
-
License
ISC
Repository
github
Last release
4 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

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago