example-data.com

followers

followers

Page 10 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": 217,
      "userId": 107,
      "followsUserId": 84,
      "createdAt": "2024-07-15T19:48:26.246Z"
    },
    {
      "id": 218,
      "userId": 238,
      "followsUserId": 211,
      "createdAt": "2025-09-01T06:09:24.711Z"
    },
    {
      "id": 219,
      "userId": 201,
      "followsUserId": 15,
      "createdAt": "2025-11-24T00:44:10.299Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 1500,
    "totalPages": 63
  },
  "links": {
    "self": "/api/v1/followers?page=10",
    "next": "/api/v1/followers?page=11",
    "prev": "/api/v1/followers?page=9"
  }
}
Draftbit