example-data.com
Menu
Browse docs and collections

articles

articles

Page 11 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": 241,
      "userId": 25,
      "title": "Statua et harum facilis culpa cavus titulus animus",
      "slug": "statua-et-harum-facilis-culpa-cavus-titulus-animus-241",
      "excerpt": "Corrumpo crapula talus casso. Autus delinquo minus adsum capto defleo complectus abutor. Bellum tepesco tactus ipsa.",
      "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\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## 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## 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## Practical Applications\n\nTheory is valuable, but practice is where ideas become reality. These principles can be applied immediately to drive measurable improvements.\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## 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\nInnovation drives progress. When teams collaborate effectively, they unlock potential that no individual could achieve alone. This synergy creates lasting impact.",
      "category": "technology",
      "tags": [
        "wellness"
      ],
      "readMinutes": 6,
      "imageUrl": "https://picsum.photos/seed/article-241/800/450",
      "isPublished": true,
      "publishedAt": "2024-12-25T00:31:41.054Z",
      "viewCount": 42612,
      "createdAt": "2024-12-22T09:28:49.087Z",
      "updatedAt": "2024-12-25T10:18:52.646Z"
    },
    {
      "id": 242,
      "userId": 165,
      "title": "Sollers crustulum acerbitas tabella terreo rem",
      "slug": "sollers-crustulum-acerbitas-tabella-terreo-rem-242",
      "excerpt": "Blandior collum averto saepe utrimque amoveo atrox speculum. Vetus auditor cum adulescens suppono bene terra canis acervus venia.",
      "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## 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## 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\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.",
      "category": "food",
      "tags": [
        "future",
        "design",
        "innovation"
      ],
      "readMinutes": 1,
      "imageUrl": "https://picsum.photos/seed/article-242/800/450",
      "isPublished": true,
      "publishedAt": "2024-06-20T19:19:34.426Z",
      "viewCount": 43419,
      "createdAt": "2024-06-19T15:24:45.758Z",
      "updatedAt": "2024-06-22T01:42:32.614Z"
    },
    {
      "id": 243,
      "userId": 47,
      "title": "Volva suspendo confido vae ver terreo approbo",
      "slug": "volva-suspendo-confido-vae-ver-terreo-approbo-243",
      "excerpt": "Aeternus curatio tergo studio causa comparo. Ipsum peior cruentus tametsi quam uredo agnitio vos. Advoco abstergo verbera tamdiu taceo pariatur cogo adfero.",
      "content": "Community plays a vital role in any ecosystem. When individuals share knowledge freely, everyone benefits and the collective intelligence grows exponentially.\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## 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\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.\n\nSustainable growth requires intentional effort. Short-term gains that compromise long-term health are ultimately self-defeating and must be carefully avoided.",
      "category": "travel",
      "tags": [
        "marketing",
        "open-source",
        "innovation",
        "sustainability",
        "leadership"
      ],
      "readMinutes": 15,
      "imageUrl": "https://picsum.photos/seed/article-243/800/450",
      "isPublished": true,
      "publishedAt": "2024-08-14T19:04:17.912Z",
      "viewCount": 32342,
      "createdAt": "2024-08-05T21:08:27.299Z",
      "updatedAt": "2024-08-19T00:27:15.123Z"
    }
  ],
  "meta": {
    "page": 11,
    "limit": 24,
    "total": 300,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/articles?page=11&limit=24",
    "first": "/api/v1/articles?page=1&limit=24",
    "last": "/api/v1/articles?page=13&limit=24",
    "next": "/api/v1/articles?page=12&limit=24",
    "prev": "/api/v1/articles?page=10&limit=24"
  }
}