API
Quoteverse — Your Ultimate Daily Quotes API
The Quoteverse API gives you access to a powerful collection of 28,000+ human-curated quotes across 17+ unique categories. Supports 100+ languages. Ideal for apps, bots, content creators & developers. Quoteverse is your portal to meaningful, soul-stirring content.
The API caters to a wide range of programming languages, including but not limited to: C, Clojure, C#, GO, Java, JavaScript, Kotlin, Node.js, Objective-C, OCaml, PHP, PowerShell, Python, R, RapidQL, Ruby, Shell, and Swift.
Built for fast integration
Plug It In. Inspire Instantly.

Speak To The World, One Language At A Time.
Send a Request
Pass the optional lang
parameter in your request (GET or POST).
Auto Translate
If a language code is provided, we’ll deliver the translated quote instantly.
Instant Result
The response returns both the original and the translated quote.
Endpoints Overview
Good Morning Quote
Retrieve a motivational “Good Morning” quote. Supports optional translation into 100+ languages.
Endpoint:
/good-morning
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/good-morning" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Good Afternoon Quote
Fetch a refreshing and inspiring “Good Afternoon” quote. Great for midday motivation. Supports 100+ language translations.
Endpoint:
/good-afternoon
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/good-afternoon" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Good Night Quote
Serve a calming and thoughtful “Good Night” quote to end the day with peace. Auto-translates to over 100+ languages via Google Translate.
Endpoint:
/good-night
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/good-night" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Affirmation Quote
Fetch a positive and empowering daily affirmation quote to uplift the spirit and shift the mindset. Supports translation into 100+ languages.
Endpoint:
/affirmations
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/affirmations" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Consciousness Quote
Retrieve a deep, thought-provoking quote on consciousness, awareness, or higher truths. Perfect for seekers, thinkers, and those tuned in. Supports multilingual translation.
Endpoint:
/consciousness
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/consciousness" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Courage Quote
Returns a single bold quote about courage, resilience, bravery, or strength. Optionally translates the quote to 100+ supported languages using ISO-639-1 codes.
Endpoint:
/courage
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/courage" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Gratitude Quote
Returns one quote randomly selected from a curated pool of affirmations and wisdom centered around gratitude, humility, and appreciation. Optional real-time translation to 100+ languages.
Endpoint:
/gratitude
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/gratitude" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Healing Quote
Returns a healing-themed quote, carefully selected to inspire inner peace, resilience, and energetic balance. Includes optional real-time translation.
Endpoint:
/healing
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/healing" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Inspirational Quote
Returns an inspirational quote that uplifts the spirit, sparks motivation, and activates forward movement. Supports optional translation into 100+ global languages.
Endpoint:
/inspirational
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/inspirational" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Love Quote
Returns a love quote—sourced from timeless poets, mystics, and heart-centered thinkers—to elevate vibration and infuse presence with compassion. Supports real-time translation into 100+ languages.
Endpoint:
/love
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/love" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Mindfulness Quote
Returns a mindful quote that centers awareness in the present moment—ideal for meditation apps, reminders, journaling tools, and mental clarity boosters. Supports on-demand translation into over 100 languages.
Endpoint:
/mindfulness
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/mindfulness" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Motivational Quote
Returns a high-energy motivational quote designed to inspire action, build grit, and ignite purpose. Perfect for productivity tools, fitness apps, daily encouragement widgets, and goal-setting platforms. Supports 100+ language translations.
Endpoint:
/motivational
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/motivational" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Poetic Quote
Returns a soulful poetic quote — inspired by poets, mystics, and visionary artists — perfect for sparking creativity, reflection, and emotional resonance. Supports over 100 languages via on-demand translation.
Endpoint:
/poetic
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/poetic" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Spiritual Quote
Returns a spiritually uplifting quote focused on awakening, divine truth, and soul connection. Supports translation into over 100 languages for global seekers.
Endpoint:
/spiritual
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/spiritual" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Stoic Quote
Returns a stoic quote emphasizing virtue, reason, and emotional mastery. Perfect for daily reflection, resilience training, and philosophical grounding. Supports translation to 100+ languages.
Endpoint:
/stoicism
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/stoicism" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Success Quote
Returns a quote focused on success, ambition, and personal growth — perfect for hustlers, entrepreneurs, and visionaries. Supports instant translation into 100+ languages.
Endpoint:
/success
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/success" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Thoughtful Quote
Returns a quote that sparks thoughtful reflection and introspection, perfect for journaling prompts, meditation, and mindful apps. Supports over 100 languages for global reach.
Endpoint:
/thoughtful
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/thoughtful" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Wisdom Quote
Returns a quote rich in wisdom, insight, and life lessons—ideal for reflection, teaching, and sharing deep truths. Supports translation into 100+ languages.
Endpoint:
/wisdom
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/wisdom" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily African Proverb
Returns a traditional African proverb that offers timeless life lessons, cultural insight, and grounded wisdom. Supports translations into 100+ languages.
Endpoint:
/proverbs/african
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/proverbs/african" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily American Proverb
Returns a well-known American proverb or saying rich with practical wisdom and life lessons. Perfect for cultural apps, storytelling, and motivational tools. Supports translations into 100+ languages.
Endpoint:
/proverbs/american
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/proverbs/american" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Daily Asian Proverb
Returns a traditional Asian proverb conveying timeless wisdom, cultural values, and practical life lessons. Perfect for education apps, storytelling, and global inspiration. Supports 100+ language translations.
Endpoint:
/proverbs/asian
Parameter:
Name | Type | Required | Description |
---|---|---|---|
lang | String | No | ISO-639-1 code for translation. E.g., fr , es , de , sw . Default: en |
Python Requests Example:
import requests url = "https://quoteverse.p.rapidapi.com/proverbs/asian" querystring = {"lang": "en"} # Change 'en' to your preferred language code headers = { "x-rapidapi-host": "quoteverse.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Subscribe to Quoteverse API
Subscribe to Quoteverse API
Subscribe to Quoteverse API
Subscribe to Quoteverse API
Subscribe on RapidAPI
Head over to our API listing on RapidAPI and click the “Subscribe” button. Choose a plan that fits your needs — from free testing to full-scale production.
Get Your API Key
Once subscribed, grab your unique X-RapidAPI-Key from the "Endpoints" tab. You’ll use this key to authenticate all your requests securely.
Start Making Requests
Use the provided code snippets or integrate directly into your app. Send requests to any available endpoint and enjoy seamless access to our powerful API features.
