Retrieve a collection of quotes using this API endpoint. When accessing this endpoint, you will receive a response containing a curated collection of quotes, making it suitable for various applications requiring inspirational or motivational content.
Example-> JSON data
1
2
3
4
5
6
7
8
9
10
{
"author": "Charles Dickens",
"content": "Subdue your appetites, my dears, and you've conquered human nature.",
"tags": [],
"authorSlug": "charles-dickens",
"length": 67,
"dateAdded": "2023-04-14",
"dateModified": "2023-04-14",
"id": 1
}
Retrieve a specific quote by its ID using this API endpoint. Provide a valid quote ID as a path variable to receive the exact quote you are looking for. This endpoint is useful for applications needing precise quote retrieval based on user preferences or requirements.
Example-> JSON data
1
2
3
4
5
6
7
8
9
10
{
"author": "Charles Dickens",
"content": "Subdue your appetites, my dears, and you've conquered human nature.",
"tags": [],
"authorSlug": "charles-dickens",
"length": 67,
"dateAdded": "2023-04-14",
"dateModified": "2023-04-14",
"id": 1
}
Retrieve a randomly selected quote from a collection using this API endpoint. Each time you access this endpoint, you will receive a different quote, making it suitable for applications that require variety or randomness in quote selection.
Example-> JSON data
1
2
3
4
5
6
7
8
9
10
{
"author": "Charles Dickens",
"content": "Subdue your appetites, my dears, and you've conquered human nature.",
"tags": [],
"authorSlug": "charles-dickens",
"length": 67,
"dateAdded": "2023-04-14",
"dateModified": "2023-04-14",
"id": 1
}