Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 983 Bytes

README.md

File metadata and controls

41 lines (29 loc) · 983 Bytes

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!

REST

You can get all sets with the route: 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

GraphQL

The graphql endpoint is: https://eso-sets.herokuapp.com/graphql.

Example queries:

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.