QuoteSlate API

Discover inspiring quotes with ease.

About QuoteSlate

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!

API Endpoints

Get a Random Quote

Retrieve a random quote from our collection.

GET /api/quotes/random

Get Multiple Random Quotes

Retrieve multiple random quotes (up to 50) at once.

GET /api/quotes/random?count=5

Get a Quote by Length Range

Retrieve a random quote within a specific character length range.

GET /api/quotes/random?minLength=50&maxLength=150

Get Quotes by Author

Retrieve random quotes from specific authors (comma-separated).

GET /api/quotes/random?authors=Babe%20Ruth,Ayn%20Rand

Get Available Authors

Retrieve a list of all available authors and their quote counts.

GET /api/authors

Get a Quote by Tags

Retrieve a random quote with specific tags (comma-separated).

GET /api/quotes/random?tags=life,wisdom

Get Available Tags

Retrieve a list of all available tags.

GET /api/tags

Combine Multiple Parameters

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