example-data.com

followers

followers

Page 2 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": 25,
      "userId": 60,
      "followsUserId": 212,
      "createdAt": "2025-06-02T15:46:06.859Z"
    },
    {
      "id": 26,
      "userId": 48,
      "followsUserId": 18,
      "createdAt": "2026-01-09T10:47:40.932Z"
    },
    {
      "id": 27,
      "userId": 20,
      "followsUserId": 161,
      "createdAt": "2025-10-18T06:27:52.045Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 1500,
    "totalPages": 63
  },
  "links": {
    "self": "/api/v1/followers?page=2",
    "next": "/api/v1/followers?page=3",
    "prev": "/api/v1/followers?page=1"
  }
}
Draftbit