example-data.com

activities

activities

Page 3 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": 49,
      "userId": 71,
      "verb": "shared",
      "targetType": "restaurant",
      "targetId": 92,
      "createdAt": "2025-10-12T11:03:43.257Z"
    },
    {
      "id": 50,
      "userId": 201,
      "verb": "commented",
      "targetType": "post",
      "targetId": 166,
      "createdAt": "2025-10-10T17:55:26.196Z"
    },
    {
      "id": 51,
      "userId": 57,
      "verb": "shared",
      "targetType": "post",
      "targetId": 21,
      "createdAt": "2025-08-08T14:16:51.627Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 3000,
    "totalPages": 125
  },
  "links": {
    "self": "/api/v1/activities?page=3",
    "next": "/api/v1/activities?page=4",
    "prev": "/api/v1/activities?page=2"
  }
}
Draftbit