GraphQL
This API supports GraphQL. The GraphQL URL for this API
is https://www.dnd5eapi.co/graphql
. Most of your questions regarding the GraphQL schema can be answered by querying the endpoint with the Apollo sandbox explorer.
Example Queries
Here is a list of example queries you can run in the sandbox explorer to get started trying out the GraphQL functionality of the API.
Get a list of ability scores
query {
abilityScores {
name
desc
skills {
name
}
}
}