example-data.com

activities

activities

Page 4 of 10.

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/activities?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/activities?limit=25"
);
const { data, meta } = await res.json();
import type { Activitie, ListEnvelope } from "https://example-data.com/types/activities.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/activities?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Activitie>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/activities",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 73,
      "userId": 175,
      "verb": "created",
      "targetType": "restaurant",
      "targetId": 52,
      "createdAt": "2025-06-14T14:36:47.221Z"
    },
    {
      "id": 74,
      "userId": 192,
      "verb": "commented",
      "targetType": "comment",
      "targetId": 1448,
      "createdAt": "2025-09-08T04:07:04.442Z"
    },
    {
      "id": 75,
      "userId": 163,
      "verb": "liked",
      "targetType": "restaurant",
      "targetId": 27,
      "createdAt": "2026-03-25T09:37:58.111Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 3000,
    "totalPages": 125
  },
  "links": {
    "self": "/api/v1/activities?page=4",
    "next": "/api/v1/activities?page=5",
    "prev": "/api/v1/activities?page=3"
  }
}
Draftbit