๐Ÿ“š 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