API Endpoint
TSunQuotes API Provide Urdu Quotes/Poetry. Random Quotes On Every Request.
GET /api/quotes
Example Response
API Response In JSON Format:
{
"quote": "Loading...",
"author": "..."
}How to Use
Get Quote In JavaScript Using `fetch` Function:
fetch('https://tsunquotes.vercel.app/api/quotes') // Changed to absolute URL for display
.then(response => response.json())
.then(data => console.log(data));