syapi

1.0.7 • Public • Published

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);
});

Package Sidebar

Install

npm i syapi

Weekly Downloads

3

Version

1.0.7

License

ISC

Unpacked Size

3.82 kB

Total Files

7

Last publish

Collaborators

  • maximking