example-data.com

followers

followers

Page 8 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": 169,
      "userId": 151,
      "followsUserId": 138,
      "createdAt": "2024-07-14T08:05:13.063Z"
    },
    {
      "id": 170,
      "userId": 5,
      "followsUserId": 117,
      "createdAt": "2025-10-08T06:28:19.758Z"
    },
    {
      "id": 171,
      "userId": 16,
      "followsUserId": 81,
      "createdAt": "2026-01-07T18:16:02.737Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 1500,
    "totalPages": 63
  },
  "links": {
    "self": "/api/v1/followers?page=8",
    "next": "/api/v1/followers?page=9",
    "prev": "/api/v1/followers?page=7"
  }
}
Draftbit