example-data.com
Menu
Browse docs and collections

articles

articles

Page 12 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": 265,
      "userId": 205,
      "title": "Terminatio delicate tactus demo sustineo desino apparatus statua ager crudelis",
      "slug": "terminatio-delicate-tactus-demo-sustineo-desino-apparatus-statua-ager-crudelis-265",
      "excerpt": "Auctus absens delectatio commodi eveniet. Comparo sumo attero.",
      "content": "Innovation 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.\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\nCommunity plays a vital role in any ecosystem. When individuals share knowledge freely, everyone benefits and the collective intelligence grows exponentially.\n\n## The Road Ahead\n\nLooking forward, several trends are poised to shape the next decade. Understanding these shifts early gives organizations a significant competitive advantage.\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\n## Practical Applications\n\nTheory is valuable, but practice is where ideas become reality. These principles can be applied immediately to drive measurable improvements.\n\nExperimentation is at the heart of discovery. By testing assumptions systematically, we eliminate guesswork and build on solid, evidence-based foundations.\n\nData tells a compelling story. By analyzing patterns over time, we can make smarter decisions and anticipate challenges before they arise.\n\nSustainable growth requires intentional effort. Short-term gains that compromise long-term health are ultimately self-defeating and must be carefully avoided.",
      "category": "technology",
      "tags": [
        "wellness",
        "software"
      ],
      "readMinutes": 20,
      "imageUrl": "https://picsum.photos/seed/article-265/800/450",
      "isPublished": true,
      "publishedAt": "2025-02-16T17:12:02.356Z",
      "viewCount": 36922,
      "createdAt": "2025-02-14T14:16:35.043Z",
      "updatedAt": "2025-03-03T12:21:19.080Z"
    },
    {
      "id": 266,
      "userId": 1,
      "title": "Conspergo vilis ante vacuus vociferor condico",
      "slug": "conspergo-vilis-ante-vacuus-vociferor-condico-266",
      "excerpt": "Confero decumbo condico adinventitias depromo aptus curatio. Cresco tam angulus cerno victus voluptatibus articulus utroque tergum.",
      "content": "## 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\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\nCommunity plays a vital role in any ecosystem. When individuals share knowledge freely, everyone benefits and the collective intelligence grows exponentially.\n\nInnovation drives progress. When teams collaborate effectively, they unlock potential that no individual could achieve alone. This synergy creates lasting impact.\n\n## The Road Ahead\n\nLooking forward, several trends are poised to shape the next decade. Understanding these shifts early gives organizations a significant competitive advantage.\n\nSustainable growth requires intentional effort. Short-term gains that compromise long-term health are ultimately self-defeating and must be carefully avoided.\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## Practical Applications\n\nTheory is valuable, but practice is where ideas become reality. These principles can be applied immediately to drive measurable improvements.",
      "category": "education",
      "tags": [
        "open-source"
      ],
      "readMinutes": 7,
      "imageUrl": "https://picsum.photos/seed/article-266/800/450",
      "isPublished": true,
      "publishedAt": "2024-12-14T01:56:36.351Z",
      "viewCount": 63144,
      "createdAt": "2024-12-13T12:13:51.395Z",
      "updatedAt": "2024-12-20T09:03:30.639Z"
    },
    {
      "id": 267,
      "userId": 157,
      "title": "Victus derideo bellicus xiphias amoveo tepidus adeo collum",
      "slug": "victus-derideo-bellicus-xiphias-amoveo-tepidus-adeo-collum-267",
      "excerpt": "Campana sonitus molestiae nostrum deludo. Taceo basium commodi.",
      "content": "Innovation drives progress. When teams collaborate effectively, they unlock potential that no individual could achieve alone. This synergy creates lasting impact.\n\nData tells a compelling story. By analyzing patterns over time, we can make smarter decisions and anticipate challenges before they arise.\n\nSustainable growth requires intentional effort. Short-term gains that compromise long-term health are ultimately self-defeating and must be carefully avoided.\n\n## The Road Ahead\n\nLooking forward, several trends are poised to shape the next decade. Understanding these shifts early gives organizations a significant competitive advantage.\n\n## Practical Applications\n\nTheory is valuable, but practice is where ideas become reality. These principles can be applied immediately to drive measurable improvements.\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.",
      "category": "politics",
      "tags": [
        "innovation"
      ],
      "readMinutes": 13,
      "imageUrl": "https://picsum.photos/seed/article-267/800/450",
      "isPublished": false,
      "publishedAt": null,
      "viewCount": 0,
      "createdAt": "2025-08-16T11:55:18.244Z",
      "updatedAt": "2025-08-21T13:52:25.880Z"
    }
  ],
  "meta": {
    "page": 12,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/articles?page=12&limit=24",
    "first": "/api/v1/articles?page=1&limit=24",
    "last": "/api/v1/articles?page=13&limit=24",
    "next": "/api/v1/articles?page=13&limit=24",
    "prev": "/api/v1/articles?page=11&limit=24"
  }
}