TL;DR
The Ron Swanson Quotes API serves random quotes from Nick Offerman's legendary Parks and Recreation character. Get a single quote, multiple quotes at once, or a specific count. Each response is a simple JSON array of strings — pure, unfiltered Swanson wisdom. No API key, no registration, no fuss. Just the meat-and-potatoes quote delivery service that Ron himself would approve of. Covers the full spectrum of Ron's opinions on government, bacon, woodworking, breakfast foods, and personal liberty.
Quick start: https://ron-swanson-quotes.herokuapp.com/v2/quotes
No API key needed — just make a request!
https://ron-swanson-quotes.herokuapp.com/v2/quotes
How to Use This API
1. Single Random Quote
https://ron-swanson-quotes.herokuapp.com/v2/quotes
2. Multiple Quotes
Add a count to the URL path:
https://ron-swanson-quotes.herokuapp.com/v2/quotes/5
3. JavaScript — Daily Quote Widget
async function showQuote() {
const resp = await fetch(
'https://ron-swanson-quotes.herokuapp.com/v2/quotes'
);
const [quote] = await resp.json();
document.getElementById('quote').textContent = `"${quote}" — Ron Swanson`;
}
showQuote();
4. Python — Quote Collector
import requests
def collect_swanson_quotes(count=10):
resp = requests.get(
f'https://ron-swanson-quotes.herokuapp.com/v2/quotes/{count}'
)
quotes = resp.json()
for i, q in enumerate(quotes, 1):
print(f'{i}. "{q}"')
print(f'\nTotal: {len(quotes)} quotes collected')
collect_swanson_quotes(5)
Frequently Asked Questions
- How many quotes are in the database?
- The API has hundreds of Ron Swanson quotes from all seven seasons of Parks and Recreation.
- Do I need an API key?
- No. This API is completely free with no authentication required. Very on-brand for Ron Swanson.
- What format is the response?
- A JSON array of strings. Single quote:
["I regret nothing. The end."]. Multiple quotes:["Quote 1", "Quote 2"]. - Can I get quotes from specific episodes?
- No, quotes are randomly selected from the full collection. There's no episode or season filtering.
- Is the API still maintained?
- The API is stable and has been running for years. As a static collection, it requires minimal maintenance.
- Can I use this in a commercial app?
- Yes, the quotes are sourced from the show's dialogue and the API is freely available. Adding attribution is appreciated.
API Details
- API URL
https://ron-swanson-quotes.herokuapp.com/v2/quotes- Documentation
- GitHub repo
- Category
- Entertainment
- Authentication
- Not Required
- Geographic Coverage
- Global
What You Can Build
- Daily quote generator for your dashboard or new tab page
- Motivational poster generator with Ron-isms
- Chat bot that responds with relevant Swanson wisdom
- Desktop widget that shows a new quote every hour
- Birthday card maker with Ron Swanson sentiments