example-data.com
Menu
Browse docs and collections

articles

articles

Page 9 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": 193,
      "userId": 230,
      "title": "Conduco ratione summa spectaculum tergo celo umquam arbor deporto ea",
      "slug": "conduco-ratione-summa-spectaculum-tergo-celo-umquam-arbor-deporto-ea-193",
      "excerpt": "Adeptio vulariter caelum audentia animadverto delego dapifer custodia. Sollers deduco considero aqua crepusculum contra conventus crepusculum. Armarium testimonium pectus terebro decretum conforto abstergo accusantium peior.",
      "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\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\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\nExperimentation is at the heart of discovery. By testing assumptions systematically, we eliminate guesswork and build on solid, evidence-based foundations.",
      "category": "education",
      "tags": [
        "startup",
        "career"
      ],
      "readMinutes": 4,
      "imageUrl": "https://picsum.photos/seed/article-193/800/450",
      "isPublished": true,
      "publishedAt": "2025-02-06T17:17:34.941Z",
      "viewCount": 6546,
      "createdAt": "2025-01-23T04:44:18.394Z",
      "updatedAt": "2025-02-07T02:08:34.839Z"
    },
    {
      "id": 194,
      "userId": 40,
      "title": "Bos capio vobis beatus uxor cibus titulus abduco sophismata arbustum",
      "slug": "bos-capio-vobis-beatus-uxor-cibus-titulus-abduco-sophismata-arbustum-194",
      "excerpt": "Defendo cogito sordeo patior cena trucido charisma adversus summa solum. Argentum acerbitas verumtamen commemoro consequuntur tibi astrum coniecto cervus carpo.",
      "content": "## 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## 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## 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\nExperimentation is at the heart of discovery. By testing assumptions systematically, we eliminate guesswork and build on solid, evidence-based foundations.\n\nCommunity plays a vital role in any ecosystem. When individuals share knowledge freely, everyone benefits and the collective intelligence grows exponentially.\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## Practical Applications\n\nTheory is valuable, but practice is where ideas become reality. These principles can be applied immediately to drive measurable improvements.",
      "category": "sports",
      "tags": [
        "open-source",
        "culture",
        "creativity"
      ],
      "readMinutes": 20,
      "imageUrl": "https://picsum.photos/seed/article-194/800/450",
      "isPublished": true,
      "publishedAt": "2025-12-09T10:31:53.988Z",
      "viewCount": 89744,
      "createdAt": "2025-12-06T10:22:59.811Z",
      "updatedAt": "2025-12-19T12:53:41.815Z"
    },
    {
      "id": 195,
      "userId": 170,
      "title": "Agnitio cetera explicabo cibo accusantium cubo civis cubicularis paens",
      "slug": "agnitio-cetera-explicabo-cibo-accusantium-cubo-civis-cubicularis-paens-195",
      "excerpt": "Carmen sollers apud recusandae solus voco eos admitto. Adfero tricesimus cubo defluo conduco deorsum decimus utrum aliquid sponte. Aeneus studio debilito comminor officia teres audax deprecator tyrannus.",
      "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\nData tells a compelling story. By analyzing patterns over time, we can make smarter decisions and anticipate challenges before they arise.\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\nSustainable growth requires intentional effort. Short-term gains that compromise long-term health are ultimately self-defeating and must be carefully avoided.\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.",
      "category": "sports",
      "tags": [
        "productivity",
        "remote-work",
        "data"
      ],
      "readMinutes": 5,
      "imageUrl": "https://picsum.photos/seed/article-195/800/450",
      "isPublished": true,
      "publishedAt": "2025-05-07T06:58:32.053Z",
      "viewCount": 72812,
      "createdAt": "2025-04-11T16:09:17.200Z",
      "updatedAt": "2025-05-11T07:47:40.095Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/articles?page=9&limit=24",
    "first": "/api/v1/articles?page=1&limit=24",
    "last": "/api/v1/articles?page=13&limit=24",
    "next": "/api/v1/articles?page=10&limit=24",
    "prev": "/api/v1/articles?page=8&limit=24"
  }
}