example-data.com
Menu
Browse docs and collections

articles

articles

Page 3 of 13.

Overview

Request

curl example

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

JavaScript example

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

TypeScript example

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

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

Python example

import requests

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

Response

{
  "data": [
    {
      "id": 49,
      "userId": 208,
      "title": "Clam neque ars volup tertius",
      "slug": "clam-neque-ars-volup-tertius-49",
      "excerpt": "Deleo collum appello voluntarius cur coadunatio artificiose confido centum. Admitto dolore denuncio nulla tui adulatio talis coaegresco desidero.",
      "content": "Sustainable growth requires intentional effort. Short-term gains that compromise long-term health are ultimately self-defeating and must be carefully avoided.\n\nData tells a compelling story. By analyzing patterns over time, we can make smarter decisions and anticipate challenges before they arise.\n\nExperimentation is at the heart of discovery. By testing assumptions systematically, we eliminate guesswork and build on solid, evidence-based foundations.\n\n## Introduction\n\nThe world of technology is evolving at an unprecedented pace. Every day, new discoveries reshape how we live, work, and interact with each other.\n\nCommunity plays a vital role in any ecosystem. When individuals share knowledge freely, everyone benefits and the collective intelligence grows exponentially.\n\n## Conclusion\n\nThe journey toward excellence is never complete. Each milestone reveals new possibilities, encouraging us to aim higher and push beyond previous limits.\n\n## Key Findings\n\nResearchers have identified several critical factors that contribute to long-term success. These include consistency, adaptability, and a willingness to embrace change.\n\nInnovation drives progress. When teams collaborate effectively, they unlock potential that no individual could achieve alone. This synergy creates lasting impact.",
      "category": "lifestyle",
      "tags": [
        "wellness",
        "engineering",
        "marketing"
      ],
      "readMinutes": 2,
      "imageUrl": "https://picsum.photos/seed/article-49/800/450",
      "isPublished": true,
      "publishedAt": "2025-11-30T12:27:51.637Z",
      "viewCount": 18599,
      "createdAt": "2025-11-05T20:13:20.484Z",
      "updatedAt": "2025-12-05T14:42:26.758Z"
    },
    {
      "id": 50,
      "userId": 191,
      "title": "Vis earum degusto cresco curtus vesper alo vesco",
      "slug": "vis-earum-degusto-cresco-curtus-vesper-alo-vesco-50",
      "excerpt": "Accusamus demo defessus tertius tener compello textus averto quidem patruus. Ago vicinus charisma cruciamentum aut. Deinde angulus admiratio subseco absum.",
      "content": "## Practical Applications\n\nTheory is valuable, but practice is where ideas become reality. These principles can be applied immediately to drive measurable improvements.\n\nInnovation drives progress. When teams collaborate effectively, they unlock potential that no individual could achieve alone. This synergy creates lasting impact.\n\n## Introduction\n\nThe world of technology is evolving at an unprecedented pace. Every day, new discoveries reshape how we live, work, and interact with each other.",
      "category": "lifestyle",
      "tags": [
        "engineering",
        "software"
      ],
      "readMinutes": 10,
      "imageUrl": "https://picsum.photos/seed/article-50/800/450",
      "isPublished": false,
      "publishedAt": null,
      "viewCount": 0,
      "createdAt": "2024-07-27T13:40:54.898Z",
      "updatedAt": "2024-08-13T21:23:34.413Z"
    },
    {
      "id": 51,
      "userId": 88,
      "title": "Volva cubicularis quis aetas sperno turbo textus commodi ulterius statua",
      "slug": "volva-cubicularis-quis-aetas-sperno-turbo-textus-commodi-ulterius-statua-51",
      "excerpt": "Unus tamen veritatis. Dedico autus acquiro credo uter sub infit taceo sponte.",
      "content": "## Key Findings\n\nResearchers have identified several critical factors that contribute to long-term success. These include consistency, adaptability, and a willingness to embrace change.\n\nSustainable growth requires intentional effort. Short-term gains that compromise long-term health are ultimately self-defeating and must be carefully avoided.\n\nCommunity plays a vital role in any ecosystem. When individuals share knowledge freely, everyone benefits and the collective intelligence grows exponentially.",
      "category": "education",
      "tags": [
        "sustainability"
      ],
      "readMinutes": 13,
      "imageUrl": "https://picsum.photos/seed/article-51/800/450",
      "isPublished": true,
      "publishedAt": "2026-02-07T23:18:32.457Z",
      "viewCount": 5147,
      "createdAt": "2026-01-31T22:31:37.041Z",
      "updatedAt": "2026-02-26T13:52:01.893Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/articles?page=3&limit=24",
    "first": "/api/v1/articles?page=1&limit=24",
    "last": "/api/v1/articles?page=13&limit=24",
    "next": "/api/v1/articles?page=4&limit=24",
    "prev": "/api/v1/articles?page=2&limit=24"
  }
}