quotes
quotes
Browse 200 quotes records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
-
Be the change that you wish to see in the world.
#1
-
Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.
#2
-
In the middle of difficulty lies opportunity.
#3
-
Whether you think you can, or you think you can't — you're right.
#4
-
The only way to do great work is to love what you do.
#5
-
Life is what happens when you're busy making other plans.
#6
-
The future belongs to those who believe in the beauty of their dreams.
#7
-
Darkness cannot drive out darkness; only light can do that.
#8
-
Not all those who wander are lost.
#9
-
It is never too late to be what you might have been.
#10
-
Do or do not. There is no try.
#11
-
The unexamined life is not worth living.
#12
-
I think, therefore I am.
#13
-
Knowing yourself is the beginning of all wisdom.
#14
-
Happiness is not something ready made. It comes from your own actions.
#15
-
Success is not final, failure is not fatal: It is the courage to continue that counts.
#16
-
Try not to become a person of success, but rather try to become a person of value.
#17
-
If you tell the truth, you don't have to remember anything.
#18
-
I have nothing to declare except my genius.
#19
-
To be yourself in a world that is constantly trying to make you something else is the greatest accomplishment.
#20
-
An eye for an eye only ends up making the whole world blind.
#21
-
The journey of a thousand miles begins with one step.
#22
-
Imagination is more important than knowledge.
#23
-
I have learned over the years that when one's mind is made up, this diminishes fear.
#24
- text
- Be the change that you wish to see in the world.
- authorName
- Mahatma Gandhi
- source
- —
- category
- Inspiration
- createdAt
- text
- Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.
- authorName
- Albert Einstein
- source
- —
- category
- Humor
- createdAt
- text
- In the middle of difficulty lies opportunity.
- authorName
- Albert Einstein
- source
- —
- category
- Motivation
- createdAt
- text
- Whether you think you can, or you think you can't — you're right.
- authorName
- Henry Ford
- source
- —
- category
- Mindset
- createdAt
- text
- The only way to do great work is to love what you do.
- authorName
- Steve Jobs
- source
- Stanford Commencement 2005
- category
- Work
- createdAt
- text
- Life is what happens when you're busy making other plans.
- authorName
- John Lennon
- source
- Beautiful Boy
- category
- Life
- createdAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/quotes?limit=25"const res = await fetch(
"https://example-data.com/api/v1/quotes?limit=25"
);
const { data, meta } = await res.json();import type { Quote, ListEnvelope } from "https://example-data.com/types/quotes.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/quotes?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Quote>;import requests
res = requests.get(
"https://example-data.com/api/v1/quotes",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 1,
"text": "Be the change that you wish to see in the world.",
"authorName": "Mahatma Gandhi",
"source": null,
"category": "Inspiration",
"createdAt": "2025-03-23T18:12:43.329Z"
},
{
"id": 2,
"text": "Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.",
"authorName": "Albert Einstein",
"source": null,
"category": "Humor",
"createdAt": "2025-03-11T19:49:33.074Z"
},
{
"id": 3,
"text": "In the middle of difficulty lies opportunity.",
"authorName": "Albert Einstein",
"source": null,
"category": "Motivation",
"createdAt": "2025-09-13T12:56:43.995Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 200,
"totalPages": 8
},
"links": {
"self": "/api/v1/quotes?page=1",
"first": "/api/v1/quotes?page=1",
"last": "/api/v1/quotes?page=8",
"next": "/api/v1/quotes?page=2",
"prev": null
}
}