example-data.com

followers

followers

Page 9 of 10.

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/followers?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/followers?limit=25"
);
const { data, meta } = await res.json();
import type { Follower, ListEnvelope } from "https://example-data.com/types/followers.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/followers?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Follower>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/followers",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 193,
      "userId": 190,
      "followsUserId": 159,
      "createdAt": "2026-04-22T16:52:26.842Z"
    },
    {
      "id": 194,
      "userId": 63,
      "followsUserId": 229,
      "createdAt": "2025-04-16T21:30:29.647Z"
    },
    {
      "id": 195,
      "userId": 23,
      "followsUserId": 65,
      "createdAt": "2026-05-19T10:11:41.667Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 1500,
    "totalPages": 63
  },
  "links": {
    "self": "/api/v1/followers?page=9",
    "next": "/api/v1/followers?page=10",
    "prev": "/api/v1/followers?page=8"
  }
}
Draftbit