example-data.com
Menu
Browse docs and collections

articles

articles

Page 8 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": 169,
      "userId": 168,
      "title": "Caries cresco considero vespillo testimonium adsum",
      "slug": "caries-cresco-considero-vespillo-testimonium-adsum-169",
      "excerpt": "Tollo tredecim peior clibanus bis cinis verecundia condico aro. Clibanus corrigo amita beneficium tergo non.",
      "content": "Innovation drives progress. When teams collaborate effectively, they unlock potential that no individual could achieve alone. This synergy creates lasting impact.\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## 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": [
        "innovation",
        "ai"
      ],
      "readMinutes": 2,
      "imageUrl": "https://picsum.photos/seed/article-169/800/450",
      "isPublished": true,
      "publishedAt": "2024-10-08T00:56:50.890Z",
      "viewCount": 58576,
      "createdAt": "2024-09-27T03:00:22.191Z",
      "updatedAt": "2024-10-11T06:44:34.681Z"
    },
    {
      "id": 170,
      "userId": 238,
      "title": "Atavus cariosus color studio voco",
      "slug": "atavus-cariosus-color-studio-voco-170",
      "excerpt": "Amissio venia cura decet depulso conturbo aveho deripio vinculum. Curatio tubineus depromo caveo cauda pauper pauci deputo.",
      "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\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.\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": "environment",
      "tags": [
        "open-source",
        "creativity",
        "productivity"
      ],
      "readMinutes": 5,
      "imageUrl": "https://picsum.photos/seed/article-170/800/450",
      "isPublished": true,
      "publishedAt": "2025-05-10T07:07:22.584Z",
      "viewCount": 27660,
      "createdAt": "2025-04-26T13:09:30.149Z",
      "updatedAt": "2025-05-17T23:34:22.354Z"
    },
    {
      "id": 171,
      "userId": 235,
      "title": "Adopto deleo comis damno suffragium convoco delinquo summa ascit aliquam",
      "slug": "adopto-deleo-comis-damno-suffragium-convoco-delinquo-summa-ascit-aliquam-171",
      "excerpt": "Cupiditas conor vitium cavus terreo adamo compello vivo voveo curo. Ante aspicio inflammatio tabula adhuc creta caute. Autus corpus peccatus terminatio vehemens texo.",
      "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.",
      "category": "technology",
      "tags": [
        "creativity",
        "future"
      ],
      "readMinutes": 20,
      "imageUrl": "https://picsum.photos/seed/article-171/800/450",
      "isPublished": true,
      "publishedAt": "2025-01-02T08:51:09.964Z",
      "viewCount": 28797,
      "createdAt": "2024-12-28T13:37:56.882Z",
      "updatedAt": "2025-01-08T11:51:52.208Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/articles?page=8&limit=24",
    "first": "/api/v1/articles?page=1&limit=24",
    "last": "/api/v1/articles?page=13&limit=24",
    "next": "/api/v1/articles?page=9&limit=24",
    "prev": "/api/v1/articles?page=7&limit=24"
  }
}