example-data.com

followers

followers

Page 6 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": 121,
      "userId": 250,
      "followsUserId": 51,
      "createdAt": "2025-02-08T19:12:10.459Z"
    },
    {
      "id": 122,
      "userId": 25,
      "followsUserId": 9,
      "createdAt": "2025-09-20T11:07:10.445Z"
    },
    {
      "id": 123,
      "userId": 245,
      "followsUserId": 83,
      "createdAt": "2024-07-16T03:03:07.036Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 1500,
    "totalPages": 63
  },
  "links": {
    "self": "/api/v1/followers?page=6",
    "next": "/api/v1/followers?page=7",
    "prev": "/api/v1/followers?page=5"
  }
}
Draftbit