example-data.com
Menu
Browse docs and collections

articles

articles

Page 7 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": 145,
      "userId": 245,
      "title": "Peior curis magni ater cupressus",
      "slug": "peior-curis-magni-ater-cupressus-145",
      "excerpt": "Vix tactus venustas triumphus absque aurum eaque cogo. Talio cultura terebro. Adipiscor demo subnecto aspicio dedecor cauda ubi est casso.",
      "content": "Community 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.\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\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## 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\nSustainable growth requires intentional effort. Short-term gains that compromise long-term health are ultimately self-defeating and must be carefully avoided.",
      "category": "food",
      "tags": [
        "finance"
      ],
      "readMinutes": 13,
      "imageUrl": "https://picsum.photos/seed/article-145/800/450",
      "isPublished": true,
      "publishedAt": "2024-10-27T23:28:26.239Z",
      "viewCount": 78688,
      "createdAt": "2024-10-07T14:44:00.991Z",
      "updatedAt": "2024-11-01T14:21:13.996Z"
    },
    {
      "id": 146,
      "userId": 126,
      "title": "Sumo corroboro cultura venio synagoga cognomen tepesco",
      "slug": "sumo-corroboro-cultura-venio-synagoga-cognomen-tepesco-146",
      "excerpt": "Ulterius conqueror advoco adhaero exercitationem atqui cilicium volaticus. Aqua quia curso aestivus. Corona capio soleo non.",
      "content": "Data tells a compelling story. By analyzing patterns over time, we can make smarter decisions and anticipate challenges before they arise.\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\nInnovation drives progress. When teams collaborate effectively, they unlock potential that no individual could achieve alone. This synergy creates lasting impact.\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.\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": "environment",
      "tags": [
        "startup"
      ],
      "readMinutes": 13,
      "imageUrl": "https://picsum.photos/seed/article-146/800/450",
      "isPublished": true,
      "publishedAt": "2024-12-21T05:12:22.790Z",
      "viewCount": 31998,
      "createdAt": "2024-12-19T00:50:49.737Z",
      "updatedAt": "2025-01-02T17:13:08.713Z"
    },
    {
      "id": 147,
      "userId": 58,
      "title": "Conatus fugit denuncio torrens tendo adhuc",
      "slug": "conatus-fugit-denuncio-torrens-tendo-adhuc-147",
      "excerpt": "Celo aduro universe. Inventore cibus magnam curis voluptatum volaticus spiritus amissio. Ara usus votum caste.",
      "content": "Sustainable 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.\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\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## 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\nData tells a compelling story. By analyzing patterns over time, we can make smarter decisions and anticipate challenges before they arise.\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": "entertainment",
      "tags": [
        "marketing",
        "productivity",
        "privacy",
        "data",
        "engineering"
      ],
      "readMinutes": 20,
      "imageUrl": "https://picsum.photos/seed/article-147/800/450",
      "isPublished": true,
      "publishedAt": "2025-02-25T16:29:23.704Z",
      "viewCount": 38040,
      "createdAt": "2025-02-23T14:52:39.791Z",
      "updatedAt": "2025-03-14T01:34:00.212Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/articles?page=7&limit=24",
    "first": "/api/v1/articles?page=1&limit=24",
    "last": "/api/v1/articles?page=13&limit=24",
    "next": "/api/v1/articles?page=8&limit=24",
    "prev": "/api/v1/articles?page=6&limit=24"
  }
}