About
Random Stardew Valley Quote API is an API that can retrieve random quotes from the video game Stardew Valley. Each API request returns a JSON response.
You can find more quotes by checking out the Stardew Valley Wiki.
Random Stardew Valley Quote API is a fan-made project created for learning and personal use. This API is not produced, endorsed, supported, or affiliated with ConcernedApe.
Using the API
Single Quote
To retrieve a single quote, use the following URL in a GET request:
https://random-stardew-quote.glitch.me/api/quote
Example of JSON response:
{"random_quote":{"quote":"You see... My body has departed this world, but my heart will always remain in Stardew Valley.","villager_name":"Grandpa"}}
Multiple Quotes
To retrieve multiple quotes, use the following URL in a GET request and replace :num
with your desired number of quotes.
https://random-stardew-quote.glitch.me/api/quotes?num=:num
Example of a JSON response from https://random-stardew-quote.glitch.me/api/quotes?num=3 to retrieve three quotes:
{"random_quotes":[{"quote":"Keep your mind open and some interesting things might take root. Anyway, how is your day going?","villager_name":"Emily"},
{"quote":"Everyone seems a little happier on the weekends, don't you think? I'm on the job seven days a week, though.","villager_name":"Lewis"},
{"quote":"The flow of time is so delicate... even the tiniest decision changes the future forever.","villager_name":"Leah"}]}