Discover inspiring quotes with ease.
QuoteSlate is a powerful API that provides access to a vast collection of inspirational quotes. With support for filtering by author, length, and tags, you can easily find the perfect quote for your needs. Whether you're building a motivational app, a writing tool, or just looking for daily inspiration, QuoteSlate has got you covered!
Retrieve a random quote from our collection.
GET /api/quotes/random
Retrieve multiple random quotes (up to 50) at once.
GET /api/quotes/random?count=5
Retrieve a random quote within a specific character length range.
GET
/api/quotes/random?minLength=50&maxLength=150
Retrieve random quotes from specific authors (comma-separated).
GET
/api/quotes/random?authors=Babe%20Ruth,Ayn%20Rand
Retrieve a list of all available authors and their quote counts.
GET /api/authors
Retrieve a random quote with specific tags (comma-separated).
GET /api/quotes/random?tags=life,wisdom
Retrieve a list of all available tags.
GET /api/tags
Mix and match parameters to get exactly what you need.
GET
/api/quotes/random?authors=Babe%20Ruth&tags=wisdom&count=3
&minLength=50&maxLength=150