📢 Public APIs
Get quotes
The API endpoint allows you to retrieve a list of quotes.
When accessing this endpoint, you will receive a response containing a collection of quotes.
get/public/quotes
Query parameters
pagestring
Example:1
limitstring
Example:10
querystring
Example:human
Response
Get quotes
Example response
{
"data": {
"currentPageItems": 5,
"data": [
{
"author": "Charles Dickens",
"authorSlug": "charles-dickens",
"content": "Subdue your appetites, my dears, and you've conquered human nature.",
"dateAdded": "2023-04-14",
"dateModified": "2023-04-14",
"id": 1,
"length": 67,
"tags": []
},
{
"author": "Thomas Edison",
"authorSlug": "thomas-edison",
"content": "The doctor of the future will give no medicine, but will interest her or his patients in the care of the human frame, in a proper diet, and in the cause and prevention of disease.",
"dateAdded": "2023-04-14",
"dateModified": "2023-04-14",
"id": 14,
"length": 179,
"tags": [
"Health",
"Wellness"
]
},
{
"author": "Albert Einstein",
"authorSlug": "albert-einstein",
"content": "Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.",
"dateAdded": "2023-04-06",
"dateModified": "2023-04-14",
"id": 26,
"length": 98,
"tags": [
"Stupidity"
]
},
{
"author": "Albert Einstein",
"authorSlug": "albert-einstein",
"content": "The ideals which have lighted my way, and time after time have given me new courage to face life cheerfully, have been Kindness, Beauty, and Truth. The trite subjects of human efforts, possessions, outward success, luxury have always seemed to me contemptible.",
"dateAdded": "2023-04-06",
"dateModified": "2023-04-14",
"id": 40,
"length": 260,
"tags": [
"Success"
]
},
{
"author": "Winston Churchill",
"authorSlug": "winston-churchill",
"content": "Courage is rightly esteemed the first of human qualities... because it is the quality which guarantees all others.",
"dateAdded": "2022-03-12",
"dateModified": "2023-04-14",
"id": 255,
"length": 114,
"tags": [
"Courage"
]
}
],
"limit": 10,
"page": 1,
"totalItems": 5,
"totalPages": 1
},
"message": "Quotes fetched successfully",
"statusCode": 200,
"success": true
}