example-data.com
Menu
Browse docs and collections

followers

followers

Page 15 of 63.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/followers?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/followers?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/followers.d.ts https://example-data.com/types/followers.d.ts
import type { Follower, ListEnvelope } from "./types/followers";

const res = await fetch(
  "https://example-data.com/api/v1/followers?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Follower>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/followers",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 337,
      "userId": 144,
      "followsUserId": 206,
      "createdAt": "2026-04-30T12:38:23.301Z"
    },
    {
      "id": 338,
      "userId": 162,
      "followsUserId": 238,
      "createdAt": "2025-01-04T06:37:58.281Z"
    },
    {
      "id": 339,
      "userId": 28,
      "followsUserId": 10,
      "createdAt": "2026-05-14T14:31:25.031Z"
    }
  ],
  "meta": {
    "page": 15,
    "limit": 24,
    "total": 1500,
    "totalPages": 63
  },
  "links": {
    "self": "/api/v1/followers?page=15&limit=24",
    "first": "/api/v1/followers?page=1&limit=24",
    "last": "/api/v1/followers?page=63&limit=24",
    "next": "/api/v1/followers?page=16&limit=24",
    "prev": "/api/v1/followers?page=14&limit=24"
  }
}