example-data.com

activities

activities

Page 5 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": 97,
      "userId": 104,
      "verb": "shared",
      "targetType": "restaurant",
      "targetId": 81,
      "createdAt": "2026-01-18T09:05:27.909Z"
    },
    {
      "id": 98,
      "userId": 44,
      "verb": "liked",
      "targetType": "comment",
      "targetId": 269,
      "createdAt": "2025-11-22T07:57:11.764Z"
    },
    {
      "id": 99,
      "userId": 213,
      "verb": "liked",
      "targetType": "comment",
      "targetId": 1179,
      "createdAt": "2025-07-11T20:05:01.131Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 3000,
    "totalPages": 125
  },
  "links": {
    "self": "/api/v1/activities?page=5",
    "next": "/api/v1/activities?page=6",
    "prev": "/api/v1/activities?page=4"
  }
}
Draftbit