example-data.com

activities

activities

Browse 3000 activities records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

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": 1,
      "userId": 15,
      "verb": "shared",
      "targetType": "restaurant",
      "targetId": 9,
      "createdAt": "2026-02-03T09:24:31.539Z"
    },
    {
      "id": 2,
      "userId": 54,
      "verb": "created",
      "targetType": "comment",
      "targetId": 184,
      "createdAt": "2025-09-04T16:12:24.407Z"
    },
    {
      "id": 3,
      "userId": 5,
      "verb": "shared",
      "targetType": "restaurant",
      "targetId": 69,
      "createdAt": "2026-02-16T15:04:26.292Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 3000,
    "totalPages": 120
  },
  "links": {
    "self": "/api/v1/activities?page=1",
    "first": "/api/v1/activities?page=1",
    "last": "/api/v1/activities?page=120",
    "next": "/api/v1/activities?page=2",
    "prev": null
  }
}

View full response →

Draftbit