Daily Inspiration API
A simple, powerful API to get inspirational quotes for your apps, websites, and projects. Free to use, easy to integrate.
Today's Quote
{
"quote": "The only way to do great work is to love what you do.",
"author": "Steve Jobs",
"category": "motivation",
"date": "2025-12-23"
}
Why Choose QuoteDay?
Everything you need to add daily inspiration to your projects.
Simple Integration
One API call to get today's quote. Works with any programming language or platform.
Secure API Keys
Your API key is hashed and secure. Rate limiting protects against abuse.
Usage Analytics
Track your API usage with detailed analytics in your dashboard.
Quick Start Guide
Get started in minutes with our simple API.
1
2
Make API Request
Send a GET request with your API key in the header.
curl -X GET "https://quoteday.dev/api/quote/today" \
-H "X-API-KEY: your_api_key_here"
3
Get JSON Response
Receive a beautiful JSON response with today's quote.
{
"quote": "Success is not final, failure is not fatal.",
"author": "Winston Churchill",
"category": "motivation",
"date": "2025-12-23"
}
Code Examples
Integrate QuoteDay with your favorite language.
JS
JavaScript
const response = await fetch(
'https://quoteday.dev/api/quote/today',
{
headers: {
'X-API-KEY': 'your_api_key'
}
}
);
const data = await response.json();
console.log(data.quote);
PY
Python
import requests
response = requests.get(
'https://quoteday.dev/api/quote/today',
headers={'X-API-KEY': 'your_api_key'}
)
data = response.json()
print(data['quote'])
PHP
PHP
$response = Http::withHeaders([
'X-API-KEY' => 'your_api_key'
])->get('https://quoteday.dev/api/quote/today');
$quote = $response->json()['quote'];
echo $quote;
$
cURL
curl -X GET \
"https://quoteday.dev/api/quote/today" \
-H "X-API-KEY: your_api_key"