example-data.com

followers

followers

Browse 1500 followers records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

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": 1,
      "userId": 194,
      "followsUserId": 136,
      "createdAt": "2024-08-15T01:35:05.437Z"
    },
    {
      "id": 2,
      "userId": 10,
      "followsUserId": 120,
      "createdAt": "2025-04-25T14:22:08.999Z"
    },
    {
      "id": 3,
      "userId": 26,
      "followsUserId": 117,
      "createdAt": "2026-04-18T18:06:22.809Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 1500,
    "totalPages": 60
  },
  "links": {
    "self": "/api/v1/followers?page=1",
    "first": "/api/v1/followers?page=1",
    "last": "/api/v1/followers?page=60",
    "next": "/api/v1/followers?page=2",
    "prev": null
  }
}

View full response →

Draftbit