example-data.com

activities

activities

Page 8 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": 169,
      "userId": 196,
      "verb": "shared",
      "targetType": "restaurant",
      "targetId": 29,
      "createdAt": "2025-07-11T12:37:47.899Z"
    },
    {
      "id": 170,
      "userId": 85,
      "verb": "commented",
      "targetType": "post",
      "targetId": 36,
      "createdAt": "2026-03-31T01:00:46.685Z"
    },
    {
      "id": 171,
      "userId": 52,
      "verb": "created",
      "targetType": "comment",
      "targetId": 355,
      "createdAt": "2026-02-22T15:11:23.203Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 3000,
    "totalPages": 125
  },
  "links": {
    "self": "/api/v1/activities?page=8",
    "next": "/api/v1/activities?page=9",
    "prev": "/api/v1/activities?page=7"
  }
}
Draftbit