Skip to content

iTomkinas/bumapi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Node.js bumble api

Unofficial API for interacting with the dating app Bumble

Getting Started

npm install bumbleapi

How to use

var BumAPI = require('bumbleapi')('Your telephone','Your password');

To initalize you need to run

BumAPI.startup().then((res) => {console.log(res);})

Run BumAPI.startup() to initialize the session.

Then you can run BumAPI.getEncounters().

In the BumAPI.getEncounters() response you can find the encounters info and ids

To submit a vote no BumAPI.voteNoForEncounter(id) where the id can be found in the response of BumAPI.getEncounters().

To submit a vote yes BumAPI.voteYestForEncounter(id) where the id can be found in the response of BumAPI.getEncounters().

3 functions are curenctly available

BumAPI.getEncounters().then(data => {})
BumAPI.voteNoForEncounter(id).then(data => {})
BumAPI.voteYestForEncounter(id).then(data => {})

Contributing

Please email [email protected] for more info.

License

This project is licensed under the ISC License

About

Unofficial Bumble API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%