๐ Multilingual Quotes API
July 27, 2025 ยท View on GitHub
A simple, open-source collection of multilingual quotes focused on technology, science, logic, innovation, and inspiration.
๐ Supported Languages
- English
- Hindi
- Urdu
- ...more coming soon!
๐ How to Use
These .json files are publicly hosted. You can directly fetch them using any HTTP client (like fetch, axios, curl, etc).
Example URLs:
https://prem-k-r.github.io/multilingual-quotes-api/data/en.json
https://prem-k-r.github.io/multilingual-quotes-api/data/hi.json
https://prem-k-r.github.io/multilingual-quotes-api/data/ur.json
Example (JavaScript):
fetch("https://prem-k-r.github.io/multilingual-quotes-api/data/en.json")
.then(res => res.json())
.then(data => console.log(data));
๐ค Contributing
Everyone is welcome to contribute quotes in their native languages. Just keep a few things in mind:
- โ Make sure you write the correct author's name.
- ๐ง Prefer quotes related to technology, science, logic, or motivation.
- ๐ซ Avoid inappropriate, offensive, or unrelated content.
- ๐ฌ Quotes should be short and meaningful.
- ๐ Add quotes to the correct language file inside
/data/directory. - ๐งช Validate JSON format before pushing.
๐ Folder Structure
multilingual-quotes-api/
โโโ data/
โ โโโ en.json
โ โโโ hi.json
โ โโโ ur.json
โ โโโ ...other language files
โโโ README.md
โโโ minified/
โ โโโ en.json โ auto-generated
โ โโโ hi.json โ auto-generated
โ โโโ bn.json โ auto-generated
โ โโโ ...other language files
โ โโโ metadata.json โ tracking file
โโโ .github/
โ โโโ workflows/
โ โโโ minify-quotes.yml