example-data.com
Menu
Browse docs and collections

followers

followers

Browse 1500 followers records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

Showing first 6 of 24 on this page.

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": 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 →