example-data.com

followers

followers

Page 5 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": 97,
      "userId": 1,
      "followsUserId": 248,
      "createdAt": "2024-11-28T00:57:18.276Z"
    },
    {
      "id": 98,
      "userId": 32,
      "followsUserId": 123,
      "createdAt": "2025-09-13T05:25:52.917Z"
    },
    {
      "id": 99,
      "userId": 115,
      "followsUserId": 62,
      "createdAt": "2025-03-28T03:36:35.076Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 1500,
    "totalPages": 63
  },
  "links": {
    "self": "/api/v1/followers?page=5",
    "next": "/api/v1/followers?page=6",
    "prev": "/api/v1/followers?page=4"
  }
}
Draftbit