example-data.com

hashtags / #39

#trado

Component variants

Medium

#trado

Small
#trado
curl -sS \
  "https://example-data.com/api/v1/hashtags/39" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hashtags/39"
);
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/39"
);
const hashtag = (await res.json()) as Hashtag;
import requests

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