example-data.com
Menu
Browse docs and collections

quotes

quotes

Page 3 of 9.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/quotes?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/quotes?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/quotes.d.ts https://example-data.com/types/quotes.d.ts
import type { Quote, ListEnvelope } from "./types/quotes";

const res = await fetch(
  "https://example-data.com/api/v1/quotes?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Quote>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/quotes",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 49,
      "text": "Contra deporto claro vis tamisium defero ea virgo.",
      "authorName": "Danielle Rowe",
      "source": null,
      "category": "Humor",
      "createdAt": "2024-10-10T00:43:42.090Z"
    },
    {
      "id": 50,
      "text": "Truculenter ubi curis arx vestrum assentator tricesimus tondeo vestigium demum delego.",
      "authorName": "Hattie Ferry",
      "source": "aetas artificiose casso",
      "category": "Success",
      "createdAt": "2025-12-17T07:31:02.047Z"
    },
    {
      "id": 51,
      "text": "Vulariter cunctatio vereor non candidus adfero ex utique adstringo argumentum adeo traho aliquid tres veritatis.",
      "authorName": "Casey Medhurst",
      "source": "adversus carpo uterque apto tardus",
      "category": "Courage",
      "createdAt": "2025-01-14T04:11:19.247Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/quotes?page=3&limit=24",
    "first": "/api/v1/quotes?page=1&limit=24",
    "last": "/api/v1/quotes?page=9&limit=24",
    "next": "/api/v1/quotes?page=4&limit=24",
    "prev": "/api/v1/quotes?page=2&limit=24"
  }
}