https://github.com/harshitv21/pokemon-api
https://github.com/harshitv21/pokemon-api
api api-development bulbapedia cheerio mongodb mongoose pokemon pokemon-api react scraping
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/harshitv21/pokemon-api
- Owner: Harshitv21
- Created: 2025-01-31T08:26:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-31T08:26:23.000Z (about 1 year ago)
- Last Synced: 2025-02-15T22:44:18.212Z (about 1 year ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
Awesome Lists containing this project
README
# Pokemon API
## Object structure for alphabetical order
```json
{
"Character":
{
"nDex":
{
"nDexID": "",
"nDex": "",
"name": "",
"pageLink": ""
}
}
}
```
## Object structure for numerical order
```json
{
"nDexID":
{
"nDexID": "",
"nDex": "",
"name": "",
"pageLink": ""
}
}
```
## JSON Format
```json
{
"Pokemon Image Link": "",
"Types": {
"Pokemon Form Name": ["Type of that form"]
},
"Abilities": {
"Ability": "Pokemon Form"
},
"Gender Ratio": {
"Male": "",
"Female": "",
"Gender Unknown": "???"
},
"Catch Rate": {
"Rate": "",
"Additional Notes": ""
},
"Breeding": {
"Hatch Times": "",
"Egg Group": "",
"Additional Notes": ""
},
"Experience Yield": {
"Exp": "Generation / Generation Range",
},
"Leveling": "",
"Shape": {
"Body Type": "",
"Additional Notes": ""
},
"Color": {
"Color": "",
"Additional Notes": ""
},
"Base Friendship": "",
"External Links": {
"Generation Links": {
"Generation": "Link for that generation"
},
"Artwork Archives": ""
}
}
```