Free & Open Source
Lightning Fast Quote API
Get random quotes in milliseconds. No authentication required. Perfect for apps, websites, and bots.
-
Quotes
-
Categories
<5ms
Response
Live Demo
Loading...
API Endpoints
Simple REST endpoints with JSON responses
GET
/quote
Get a random quote. Use
?tag=ai to filter by tag.
GET
/quotes?count=3
Get multiple quotes (max 3). Combine with
&tag=programming
GET
/tags
List all available tags with quote counts
GET
/health
Health check endpoint for monitoring
Quick Start
Start using the API in seconds
# Get a random quote curl https://quotes.mkallis.com/quote # Get an AI quote curl https://quotes.mkallis.com/quote?tag=ai # Get 3 programming quotes curl "https://quotes.mkallis.com/quotes?count=3&tag=programming"
Response Format
Clean JSON with response time included
{ "quote": "Artificial intelligence is the new electricity.", "author": "Andrew Ng", "tags": ["ai", "machine-learning", "technology"], "responseTimeMs": 1.24 }
Browse by Tag
Click any tag to see a quote
Rate Limits
100 requests per minute
Per IP address. Check x-ratelimit-remaining header for current usage.