Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mzr-api

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mzr-api

A versatile and user-friendly API for accessing web services, proxy check, currency rates, crypto info, news, translation, and more.

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11
decreased by-21.43%
Maintainers
0
Weekly downloads
 
Created
Source

NPM info

Discord Buy Me A Coffee :)

MZR-API

MZR-API is a Node.js module designed to simplify sending requests to the MZR API and reduce error rates. It provides an easy-to-use interface for interacting with the MZR API.

🚀 Getting Started

📥 Installation

npm install mzr-api
pnpm add mzr-api
yarn add mzr-api

📝 Usage Examples

Here are some usage examples. For more detailed information and additional examples, please refer to our documentation.

Example: Get Version
const { version } = require('mzr-api');
console.log(version);
Example: Crypto
const { Api } = require('mzr-api');
const mzrapi = new Api('YOUR_API_KEY');

(async () => {
    const coins = ['BTC', 'ETH'];
    const currencies = ['USD', 'EUR', 'TRY']; 

    const data = await mzrapi.crypto(coins, currencies);
    console.log(data);
})();
Example: Minecraft Server Info
const { Api } = require('mzr-api');
const mzrapi = new Api('YOUR_API_KEY');

(async () => {
    const data = await mzrapi.minecraftServer('mc.hypixel.net');
    console.log(data);
})();
Example: Proxy Check
const { Api } = require('mzr-api');
const mzrapi = new Api('YOUR_API_KEY');

(async () => {
    const data = await mzrapi.proxyCheck(['username:password@ip:port', 'username2:password2@ip2:port2']);
    console.log(data);
})();

For more examples and detailed information, please refer to our documentation.

📢 Contributing

If you would like to contribute, please check out our Contributing Guide.

📜 License

This project is licensed under the MIT Lisansı.

Keywords

FAQs

Package last updated on 19 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc