|
126 | 126 | <hr /> |
127 | 127 | <hr style="background-color: #3a3a3a; height: 2px" /> |
128 | 128 | <ol class="list-decimal px-7 my-5 text-xl"> |
| 129 | + <!-- ---Albums--- --> |
129 | 130 | <li class="mb-5"> |
130 | 131 | <h1 class="text-xl mb-1 font-semibold">Albums</h1> |
131 | 132 | <div |
|
203 | 204 | <p class="text-base">Search Albums by thier keywords and name</p> |
204 | 205 | </div> |
205 | 206 | </li> |
| 207 | + |
| 208 | + <!-- ---Songs--- --> |
206 | 209 | <li class="mb-5"> |
207 | 210 | <h1 class="text-xl mb-1 font-semibold">Songs</h1> |
208 | 211 | <div |
|
277 | 280 | <p class="text-base">Search song by thier keywords and name</p> |
278 | 281 | </div> |
279 | 282 | </li> |
| 283 | + |
| 284 | + <!-- Quotes --> |
| 285 | + <li class="mb-5"> |
| 286 | + <h1 class="text-xl mb-2 font-semibold">Quotes</h1> |
| 287 | + <div |
| 288 | + class="flex flex-col md:flex-row mb-2 items-start text-base gap-2" |
| 289 | + > |
| 290 | + <div> |
| 291 | + <span class="bg-green-500 px-2 py-1 text-white rounded" |
| 292 | + >GET</span |
| 293 | + > |
| 294 | + <a |
| 295 | + href="https://taylor-swift-api.onrender.com/quotes" |
| 296 | + class="bg-gray-200 px-2 hover:underline py-1 rounded" |
| 297 | + target="_blank" |
| 298 | + > |
| 299 | + <code>/quotes</code> |
| 300 | + </a> |
| 301 | + </div> |
| 302 | + |
| 303 | + <p class="text-base">Get a random quote from a song.</p> |
| 304 | + </div> |
| 305 | + <ul class="list-disc px-10 mt-2 text-base"> |
| 306 | + <h1 class="mb-2 text-lg font-semibold">Query Parameter</h1> |
| 307 | + <li class="mb-1"> |
| 308 | + <div class="flex flex-col sm:flex-row items-center gap-2"> |
| 309 | + <a |
| 310 | + href="https://taylor-swift-api.onrender.com/quotes?album=1989" |
| 311 | + class="bg-gray-200 text-sm px-2 hover:underline py-1 rounded" |
| 312 | + target="_blank" |
| 313 | + > |
| 314 | + <code>/quotes/?album=1989</code> |
| 315 | + </a> |
| 316 | + <p>Gives a random quote of an album</p> |
| 317 | + </div> |
| 318 | + </li> |
| 319 | + <li class="mb-1"> |
| 320 | + <div class="flex flex-col sm:flex-row items-center gap-2"> |
| 321 | + <a |
| 322 | + href="https://taylor-swift-api.onrender.com/quotes?song=Lover" |
| 323 | + class="bg-gray-200 text-sm px-2 hover:underline py-1 rounded" |
| 324 | + target="_blank" |
| 325 | + > |
| 326 | + <code>/quotes/?song=Lover</code> |
| 327 | + </a> |
| 328 | + <p>Gives a random quote of an song</p> |
| 329 | + </div> |
| 330 | + </li> |
| 331 | + </ul> |
| 332 | + <div |
| 333 | + class="flex flex-col md:flex-row my-2 items-start text-base gap-2" |
| 334 | + > |
| 335 | + <div> |
| 336 | + <span class="bg-green-500 px-2 py-1 text-white rounded" |
| 337 | + >GET</span |
| 338 | + > |
| 339 | + <a |
| 340 | + href="https://taylor-swift-api.onrender.com/quotes/all" |
| 341 | + class="bg-gray-200 px-2 hover:underline py-1 rounded" |
| 342 | + target="_blank" |
| 343 | + > |
| 344 | + <code>/quotes/all</code> |
| 345 | + </a> |
| 346 | + </div> |
| 347 | + <p class="text-base"> |
| 348 | + Get a list of quotes of all songs and albums |
| 349 | + </p> |
| 350 | + </div> |
| 351 | + <ul class="list-disc px-10 mt-2 text-base"> |
| 352 | + <h1 class="mb-2 text-lg font-semibold">Query Parameter</h1> |
| 353 | + <li class="mb-1"> |
| 354 | + <div class="flex flex-col sm:flex-row items-center gap-2"> |
| 355 | + <a |
| 356 | + href="https://taylor-swift-api.onrender.com/quotes/all/?album=1989" |
| 357 | + class="bg-gray-200 text-sm px-2 hover:underline py-1 rounded" |
| 358 | + target="_blank" |
| 359 | + > |
| 360 | + <code>/quotes/all/?album=1989</code> |
| 361 | + </a> |
| 362 | + <p>Gives a list of quote of an album</p> |
| 363 | + </div> |
| 364 | + </li> |
| 365 | + <li class="mb-1"> |
| 366 | + <div class="flex flex-col sm:flex-row items-center gap-2"> |
| 367 | + <a |
| 368 | + href="https://taylor-swift-api.onrender.com/quotes/all/?song=Lover" |
| 369 | + class="bg-gray-200 text-sm px-2 hover:underline py-1 rounded" |
| 370 | + target="_blank" |
| 371 | + > |
| 372 | + <code>/quotes/all/?song=Lover</code> |
| 373 | + </a> |
| 374 | + <p>Gives a list of quote of an song</p> |
| 375 | + </div> |
| 376 | + </li> |
| 377 | + </ul> |
| 378 | + |
| 379 | + <!-- <div |
| 380 | + class="flex flex-col md:flex-row mb-2 items-start text-base gap-2" |
| 381 | + > |
| 382 | + <div> |
| 383 | + <span class="bg-green-500 px-2 py-1 text-white rounded" |
| 384 | + >GET</span |
| 385 | + > |
| 386 | + <a |
| 387 | + href="https://taylor-swift-api.onrender.com/songs/random" |
| 388 | + class="bg-gray-200 px-2 hover:underline py-1 rounded" |
| 389 | + target="_blank" |
| 390 | + > |
| 391 | + <code>/songs/random</code> |
| 392 | + </a> |
| 393 | + </div> |
| 394 | + <p class="text-base">Gives a random song</p> |
| 395 | + </div> --> |
| 396 | + <!-- <div |
| 397 | + class="flex flex-col md:flex-row mb-2 items-start text-base gap-2" |
| 398 | + > |
| 399 | + <div> |
| 400 | + <span class="bg-green-500 px-2 py-1 text-white rounded" |
| 401 | + >GET</span |
| 402 | + > |
| 403 | + <a |
| 404 | + href="https://taylor-swift-api.onrender.com/songs/search/?name=world" |
| 405 | + class="bg-gray-200 px-2 hover:underline py-1 rounded" |
| 406 | + target="_blank" |
| 407 | + > |
| 408 | + <code>/songs/search/?name=World</code> |
| 409 | + </a> |
| 410 | + </div> |
| 411 | + <p class="text-base">Search song by thier keywords and name</p> |
| 412 | + </div> --> |
| 413 | + </li> |
280 | 414 | </ol> |
281 | 415 | <hr style="background-color: #3a3a3a; height: 2px" /> |
282 | 416 | <button |
|
294 | 428 | /><span>Github</span></a |
295 | 429 | > |
296 | 430 | </button> |
| 431 | + |
| 432 | + <!-- ---Credits--- --> |
297 | 433 | <div class="flex flex-wrap mt-4 items-center gap-4"> |
298 | 434 | <h2 class="text-xl font-semibold">Credits</h2> |
299 | 435 | <a |
|
0 commit comments