Get All Quote with Tags

Get All Quote with Tags

To get the data in the specified collection. If no parameters are passed, it lists all of them. Otherwise, it lists the documents in the collection matching the specified parameters:

Method : GET

URL : /api/quote/with-tags

Response : 200 - OK

[
	{
		"id": 1,
		"quote": "Be yourself; everyone else is already taken.",
		"author": {
			"id": 13,
			"name": "Oscar Wilde",
			"slug": "oscar-wilde",
			"image": "https://images.gr-assets.com/authors/1673611182p5/3565.jpg"
		},
		"tags": [
			{
				"id": 3,
				"name": "Inspirational",
				"slug": "inspirational"
			}
		]
	},
	{
		"id": 2,
		"quote": "Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.",
		"author": {
			"id": 217,
			"name": "Albert Einstein",
			"slug": "albert-einstein",
			"image": "https://images.gr-assets.com/authors/1429114964p5/9810.jpg"
		},
		"tags": [
			{
				"id": 4,
				"name": "Humor",
				"slug": "humor"
			},
			{
				"id": 5,
				"name": "Philosophy",
				"slug": "philosophy"
			},
			{
				"id": 25,
				"name": "Science",
				"slug": "science"
			}
		]
	}
]

Response : 404 - Not Found

Not Found

Response : 500 - Server Error

Internal Server Error