example-data.com

followers

followers

Page 7 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": 145,
      "userId": 34,
      "followsUserId": 116,
      "createdAt": "2025-09-08T21:15:05.616Z"
    },
    {
      "id": 146,
      "userId": 52,
      "followsUserId": 106,
      "createdAt": "2026-02-02T13:48:58.184Z"
    },
    {
      "id": 147,
      "userId": 233,
      "followsUserId": 164,
      "createdAt": "2024-11-18T22:34:03.112Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 1500,
    "totalPages": 63
  },
  "links": {
    "self": "/api/v1/followers?page=7",
    "next": "/api/v1/followers?page=8",
    "prev": "/api/v1/followers?page=6"
  }
}
Draftbit