Pokemon Go API for nodejs
Query the Pokemon database for what you want..
This library covers all functions available in the api throu Call()
We are also working now to port all calls into functions,
npm i -S pokemongo-api
See /example folder
- Login as pokemon trainer + token
- Login over google + token
- API connector
- Make all calls available in functions
- Add proxy options to requests
- Run to pokestops
- Farm specific area for pokestops
- Human walking logic
- Catch Pokemon automatically
- Drop items when bag is full
- Scan your inventar for XYZ CP pokemon and release them
- Pokemon catch filter
- Hatch eggs
- Incubate eggs
- Evolve pokemons
- Use candy
- Clean code
- Fully automate this script
- Returns the Player Object.
profile{
creation_time: {Number}
username: {String}
team: {Number}
tutorial: {Number/Boolean}
poke_storage: {String}
item_storage: {String}
daily_bonus{
NextCollectTimestampMs: {Number}
NextDefenderBonusCollectTimestampMs: {Number}
}
currency{
type: {String}
amount: {Number}
}
}
- Retrives the inventory object.
inventory_delta{
pokemon_data : {object}
item : {object}
pokedex_entry : {object}
player_stats : {object}
player_currency : {object}
player_camera : {object}
inventory_upgrades : {object}
applied_items : {object}
egg_incubators : {object}
pokemon_family : {object}
}
##Player functions
- Returns array of coords: [latitude, longitude]
- Returns array of coords
- Returns player profile
- Returns account creation date (dddd, MMMM Do YYYY, h:mm:ss a)
- Returns poke storage amount
- Returns items storage amount
- Returns currencies
- Sets user location Input:
***location***: (required) Has to be a object of location:
{
type: 'name',
name: 'Times Square'
}
OR
{
type: 'coords',
latitude: 0,
longitude: 0,
altitude: 0,
}