example-data.com

hashtags / #69

#confugo

Component variants

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

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