example-data.com
Menu
Browse docs and collections

followers

followers

Page 48 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": 1129,
      "userId": 233,
      "followsUserId": 103,
      "createdAt": "2024-10-28T12:01:50.356Z"
    },
    {
      "id": 1130,
      "userId": 212,
      "followsUserId": 35,
      "createdAt": "2025-04-24T09:35:35.116Z"
    },
    {
      "id": 1131,
      "userId": 151,
      "followsUserId": 24,
      "createdAt": "2025-02-04T00:28:00.911Z"
    }
  ],
  "meta": {
    "page": 48,
    "limit": 24,
    "total": 1500,
    "totalPages": 63
  },
  "links": {
    "self": "/api/v1/followers?page=48&limit=24",
    "first": "/api/v1/followers?page=1&limit=24",
    "last": "/api/v1/followers?page=63&limit=24",
    "next": "/api/v1/followers?page=49&limit=24",
    "prev": "/api/v1/followers?page=47&limit=24"
  }
}