example-data.com
Menu
Browse docs and collections

articles

articles

Page 2 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": 25,
      "userId": 95,
      "title": "Confido adsuesco testimonium facere truculenter valeo via trans angulus",
      "slug": "confido-adsuesco-testimonium-facere-truculenter-valeo-via-trans-angulus-25",
      "excerpt": "Teres angelus delego conservo vilis succedo quae. Sonitus pecus demulceo. Cupressus cubo cibus crustulum quam ab qui abstergo eius subseco.",
      "content": "## 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\nExperimentation is at the heart of discovery. By testing assumptions systematically, we eliminate guesswork and build on solid, evidence-based foundations.\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## 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\nData tells a compelling story. By analyzing patterns over time, we can make smarter decisions and anticipate challenges before they arise.\n\nCommunity plays a vital role in any ecosystem. When individuals share knowledge freely, everyone benefits and the collective intelligence grows exponentially.\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": "sports",
      "tags": [
        "sustainability",
        "finance",
        "design",
        "marketing"
      ],
      "readMinutes": 14,
      "imageUrl": "https://picsum.photos/seed/article-25/800/450",
      "isPublished": true,
      "publishedAt": "2024-07-28T23:09:17.797Z",
      "viewCount": 51752,
      "createdAt": "2024-07-23T02:05:55.429Z",
      "updatedAt": "2024-07-30T11:38:49.697Z"
    },
    {
      "id": 26,
      "userId": 249,
      "title": "Arcus ipsum aeternus audacia celer crastinus est perferendis urbanus asper",
      "slug": "arcus-ipsum-aeternus-audacia-celer-crastinus-est-perferendis-urbanus-asper-26",
      "excerpt": "Dicta angulus delibero copia tamisium volaticus depulso eveniet apostolus. Excepturi quae aegrus supra terra adsidue conturbo.",
      "content": "Sustainable 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## 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## 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\nData tells a compelling story. By analyzing patterns over time, we can make smarter decisions and anticipate challenges before they arise.",
      "category": "entertainment",
      "tags": [
        "creativity"
      ],
      "readMinutes": 20,
      "imageUrl": "https://picsum.photos/seed/article-26/800/450",
      "isPublished": true,
      "publishedAt": "2025-03-04T14:29:42.062Z",
      "viewCount": 72673,
      "createdAt": "2025-03-02T03:34:27.777Z",
      "updatedAt": "2025-03-08T10:51:36.542Z"
    },
    {
      "id": 27,
      "userId": 152,
      "title": "Ut cinis civitas causa vivo adaugeo adversus talis",
      "slug": "ut-cinis-civitas-causa-vivo-adaugeo-adversus-talis-27",
      "excerpt": "Patria cogito verus utrimque textor adversus claustrum. Omnis quam nemo suppellex calco patior. Spargo magni urbanus terminatio facere cerno delicate.",
      "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\nInnovation drives progress. When teams collaborate effectively, they unlock potential that no individual could achieve alone. This synergy creates lasting impact.\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\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\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\nData tells a compelling story. By analyzing patterns over time, we can make smarter decisions and anticipate challenges before they arise.",
      "category": "politics",
      "tags": [
        "open-source",
        "privacy"
      ],
      "readMinutes": 19,
      "imageUrl": "https://picsum.photos/seed/article-27/800/450",
      "isPublished": true,
      "publishedAt": "2026-02-26T17:21:29.364Z",
      "viewCount": 52081,
      "createdAt": "2026-02-22T16:10:55.263Z",
      "updatedAt": "2026-02-28T05:21:19.776Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/articles?page=2&limit=24",
    "first": "/api/v1/articles?page=1&limit=24",
    "last": "/api/v1/articles?page=13&limit=24",
    "next": "/api/v1/articles?page=3&limit=24",
    "prev": "/api/v1/articles?page=1&limit=24"
  }
}