Hi! My name is Akkshay Tandon. Apart from development, there is another side of mine. I started writing some shayari out of interest in my second year of college and without even realizing I wrote many of them, although not all of them are added in the API still. I even started a instagram page by the name Farzi Vichar.
But there was something missing, and then a random thought came to my mind of combining both my technical and writing skills.There came the idea of this API.
I have decided to make this project open source, so if you are getting started with open source or you just want to add more data, consider this repository to contribute. You will find more details related to contributing here.
This is the current list of implementations:
GET
and POST
.https://farzi-vichar-api.vercel.app/language/${language_name}
.For getting the list of languages, use:
https://farzi-vichar-api.vercel.app/language-list
For adding user submitted quotes, use:
const options = {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
"author": "Test Author",
"content": "Test Author content"
})
};
fetch('https://farzi-vichar-api.vercel.app/add-user-quote', options).then(response => response.json()).then(data => console.log(data)).catch((error) => {
console.log(error);
});
https://farzi-vichar-api.vercel.app/language/${language_name}
https://farzi-vichar-api.vercel.app/language/${language_name}?min=${min_value}&max=${max_value}
https://farzi-vichar-api.vercel.app/language/${language_name}/random