hashtags
hashtags
Browse 100 hashtags records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
#design
#javascript
#react
#ai
#music
#food
Showing first 6 of 24 on this page.
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": 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
}
}