example-data.com

activities

activities

Page 6 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": 121,
      "userId": 147,
      "verb": "shared",
      "targetType": "recipe",
      "targetId": 274,
      "createdAt": "2025-09-02T14:39:46.733Z"
    },
    {
      "id": 122,
      "userId": 123,
      "verb": "deleted",
      "targetType": "post",
      "targetId": 463,
      "createdAt": "2025-07-06T05:24:58.773Z"
    },
    {
      "id": 123,
      "userId": 5,
      "verb": "deleted",
      "targetType": "comment",
      "targetId": 1453,
      "createdAt": "2025-11-28T08:56:26.233Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 3000,
    "totalPages": 125
  },
  "links": {
    "self": "/api/v1/activities?page=6",
    "next": "/api/v1/activities?page=7",
    "prev": "/api/v1/activities?page=5"
  }
}
Draftbit