example-data.com

hashtags / #41

#vita

Component variants

Medium

#vita

Small
#vita
curl -sS \
  "https://example-data.com/api/v1/hashtags/41" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hashtags/41"
);
const hashtag = await res.json();
import type { Hashtag } from "https://example-data.com/types/hashtags.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/hashtags/41"
);
const hashtag = (await res.json()) as Hashtag;
import requests

res = requests.get(
    "https://example-data.com/api/v1/hashtags/41"
)
hashtag = res.json()
{
  "id": 41,
  "tag": "vita",
  "useCount": 2168
}
Draftbit