A simple, open-source collection of multilingual quotes focused on technology, science, logic, innovation, and inspiration.
- English
- Hindi
- Urdu
- ...more coming soon!
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));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.
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