The Quotes API provides a nearly endless amount of quotes from famous people throughout history.
Checking API status...
https://api.api-ninjas.com/v1/quotes
Returns one (or more) random quotes. Free users have access to 100 quotes - premium users have access to over 200,000 quotes.
category
premium onlyCategory to limit results to.
limit
premium onlyHow many results to return. Must be between 1
and 100
. By default 1 result is returned.
X-Api-Key
requiredAPI Key associated with your account.
quote
The quote.
author
The author of the quote.
category
The category of the quote.
https://api.api-ninjas.com/v1/quotes
Headers
X-Api-Key
Log in or sign up to get your API Key
1
2
3
4
5
6
7
[
{
"quote": "The will of man is his happiness.",
"author": "Friedrich Schiller",
"category": "happiness"
}
]
1
2
curl -X GET "https://api.api-ninjas.com/v1/quotes?category=success" \
-H "X-Api-Key: YOUR_API_KEY"
If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.