Get a random quote via Anime
This endpoint returns random quote from a given Anime name.
This is a protected endpoint. Authentication requried!
The endpoint:
/quotes/random?anime=<anime_name>
Return
It will return a Quote
object
Example:
We are using the built-in global
fetch
API here, which is both available in browser and NodeJS as of now. But you can use any other programming language or request lib.
const response = await fetch(`${BASE_URL}/quotes/random?anime=ReLife`)
const quote = await response.json()