example-data.com

activities

activities

Page 2 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": 25,
      "userId": 194,
      "verb": "liked",
      "targetType": "restaurant",
      "targetId": 56,
      "createdAt": "2025-11-05T21:00:49.853Z"
    },
    {
      "id": 26,
      "userId": 14,
      "verb": "created",
      "targetType": "post",
      "targetId": 112,
      "createdAt": "2026-01-18T08:59:35.174Z"
    },
    {
      "id": 27,
      "userId": 125,
      "verb": "commented",
      "targetType": "comment",
      "targetId": 562,
      "createdAt": "2025-11-26T04:56:43.505Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 3000,
    "totalPages": 125
  },
  "links": {
    "self": "/api/v1/activities?page=2",
    "next": "/api/v1/activities?page=3",
    "prev": "/api/v1/activities?page=1"
  }
}
Draftbit