example-data.com
Menu
Browse docs and collections

hashtags

hashtags

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

Overview

Request

curl example

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

JavaScript example

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

TypeScript example

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

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

Python example

import requests

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

Response

{
  "data": [
    {
      "id": 1,
      "tag": "design",
      "useCount": 4906
    },
    {
      "id": 2,
      "tag": "javascript",
      "useCount": 3468
    },
    {
      "id": 3,
      "tag": "react",
      "useCount": 3912
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 100,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/hashtags?page=1",
    "first": "/api/v1/hashtags?page=1",
    "last": "/api/v1/hashtags?page=4",
    "next": "/api/v1/hashtags?page=2",
    "prev": null
  }
}

View full response →