example-data.com

hashtags

hashtags

Page 4 of 5.

curl -sS \
  "https://example-data.com/api/v1/hashtags?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/hashtags?limit=25"
);
const { data, meta } = await res.json();
import type { Hashtag, ListEnvelope } from "https://example-data.com/types/hashtags.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/hashtags",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 73,
      "tag": "depromo",
      "useCount": 1212
    },
    {
      "id": 74,
      "tag": "pax",
      "useCount": 4482
    },
    {
      "id": 75,
      "tag": "cultura",
      "useCount": 3815
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 100,
    "totalPages": 5
  },
  "links": {
    "self": "/api/v1/hashtags?page=4",
    "next": "/api/v1/hashtags?page=5",
    "prev": "/api/v1/hashtags?page=3"
  }
}
Draftbit