https://github.com/jimmymcbride/eso-sets-api
An open and public API for all the sets in Elder Scrolls Online. All sets and rights belong to Zenimax Online.
https://github.com/jimmymcbride/eso-sets-api
axios cheerio cheerio-js cheerio-node cheeriojs elder-scrolls elder-scrolls-online eso fan-made knex knexjs knexjswithpostgresql node nodejs open-source opensource postgres postgresql
Last synced: 26 days ago
JSON representation
An open and public API for all the sets in Elder Scrolls Online. All sets and rights belong to Zenimax Online.
- Host: GitHub
- URL: https://github.com/jimmymcbride/eso-sets-api
- Owner: JimmyMcBride
- License: mit
- Created: 2020-09-02T00:15:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-16T05:09:51.000Z (over 5 years ago)
- Last Synced: 2025-03-05T02:45:25.284Z (about 1 year ago)
- Topics: axios, cheerio, cheerio-js, cheerio-node, cheeriojs, elder-scrolls, elder-scrolls-online, eso, fan-made, knex, knexjs, knexjswithpostgresql, node, nodejs, open-source, opensource, postgres, postgresql
- Language: JavaScript
- Homepage: https://eso-sets.herokuapp.com/
- Size: 136 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ESO Sets API
An open and public API for all the sets in Elder Scrolls Online. All sets and rights belong to Zenimax Online.
I build a front end set search tool. You can checkout, search, and filter through all the sets [here](https://eso-set-list.vercel.app/)!
## REST
You can get all sets with the route: [https://eso-sets.herokuapp.com/sets](https://eso-sets.herokuapp.com/sets)
To get a set by it's name: `https://eso-sets.herokuapp.com/set/:name`.
Example: [https://eso-sets.herokuapp.com/set/Zaan](https://eso-sets.herokuapp.com/set/Zaan)
## GraphQL
The graphql endpoint is: [https://eso-sets.herokuapp.com/graphql](https://eso-sets.herokuapp.com/graphql).
Example queries:
```graphql
query Sets {
sets {
id
name
type
bonuses
}
}
query Set {
set(name: "Zaan") {
id
name
type
bonuses
}
}
```
If you notice anything wrong or inaccurate, email me @ mcbride967@gmail.com or join my [discord server](https://discord.gg/4PCy4Bz).