example-data.com

followers

followers

Page 3 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": 49,
      "userId": 151,
      "followsUserId": 11,
      "createdAt": "2026-05-08T10:16:47.166Z"
    },
    {
      "id": 50,
      "userId": 177,
      "followsUserId": 65,
      "createdAt": "2025-03-03T03:07:15.814Z"
    },
    {
      "id": 51,
      "userId": 36,
      "followsUserId": 158,
      "createdAt": "2024-08-21T12:46:04.695Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 1500,
    "totalPages": 63
  },
  "links": {
    "self": "/api/v1/followers?page=3",
    "next": "/api/v1/followers?page=4",
    "prev": "/api/v1/followers?page=2"
  }
}
Draftbit