Skip to main content

Getting Started

Official Bio library for interacting with the Bio API


Logo


NPM version NPM downloads

Bio

Table Of Getting Started Contents

About

  • NPM package that gets information from bio id official API
  • Useful for websites where users can input any bio id and get user info
  • Supports the Promise-API, you will be able to use .then, .catch, etc...
  • & more...

Installation

npm i bioid.id

Example Usage

const bio = require('bioid.id');

async function getUserData(){
let user = await bio.user('000000000000');
console.log(user);
}
getUserData(); // calling the function