# How to use Mida with Binance
A Binance account is required to get started (create a Binance account (opens new window)).
# The plugin
The Mida Binance plugin must be installed for using Mida with Binance accounts.
npm i @reiryoku/mida-binance
import { Mida, } from "@reiryoku/mida";
import { BinancePlugin, } from "@reiryoku/mida-binance";
Mida.use(new BinancePlugin());
# Login example
Below an example on how to login into a Binance Spot account.
import { login, } from "@reiryoku/mida";
const myAccount = await login("Binance/Spot", {
apiKey: "...",
apiSecret: "...",
});
# Login credentials
The apiKey
and apiSecrect
credentials are required to use Mida with a Binance account,
the credentials can be easily generated from the Binance website.
- Create a Binance account (opens new window) if you don't have one
- Visit Binance (opens new window) and login
- Open "API Management" from your profile menu.
- Use "Create API" to generate the credentials.
At this point it's possible to use Mida with the authorized Binance account.
# Something is not working?
Create an issue (opens new window) on GitHub if something is not working as expected.