example-data.com

quotes

quotes

Page 2 of 9.

text
Education is the most powerful weapon which you can use to change the world.
authorName
Nelson Mandela
source
category
Education
createdAt
text
Cultellus esse adsum vilis theca victus dolores vinculum.
authorName
Kirk Heaney
source
vespillo vinum
category
Love
createdAt
text
Adamo culpa voco vicinus suggero acidus usque commodi quam certe curia curiositas.
authorName
Allen Dach
source
amita stips
category
Inspiration
createdAt
text
Vere uberrime voluptatibus unus ullus ventus sophismata aperio.
authorName
Mitchell Rippin
source
category
Wisdom
createdAt
text
Valde bibo vel ocer addo adduco atqui expedita caries adulescens cogo repellat truculenter acies celer.
authorName
Grace Zboncak
source
tantillus patior distinctio similique explicabo
category
Inspiration
createdAt
text
Astrum turpis tumultus tero solus anser contabesco auditor.
authorName
Roberta Ward
source
category
Wisdom
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": 25,
      "text": "Education is the most powerful weapon which you can use to change the world.",
      "authorName": "Nelson Mandela",
      "source": null,
      "category": "Education",
      "createdAt": "2025-11-11T14:10:42.076Z"
    },
    {
      "id": 26,
      "text": "Cultellus esse adsum vilis theca victus dolores vinculum.",
      "authorName": "Kirk Heaney",
      "source": "vespillo vinum",
      "category": "Love",
      "createdAt": "2024-07-07T13:33:44.918Z"
    },
    {
      "id": 27,
      "text": "Adamo culpa voco vicinus suggero acidus usque commodi quam certe curia curiositas.",
      "authorName": "Allen Dach",
      "source": "amita stips",
      "category": "Inspiration",
      "createdAt": "2024-10-18T01:01:34.711Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/quotes?page=2",
    "next": "/api/v1/quotes?page=3",
    "prev": "/api/v1/quotes?page=1"
  }
}
Draftbit