tags
tags
Page 3 of 3.
caput villa
crudelis
abbas commodi attonbitus
accusamus
tibi
cultura
Showing first 6 of 12 on this page.
curl -sS \
"https://example-data.com/api/v1/tags?limit=25"const res = await fetch(
"https://example-data.com/api/v1/tags?limit=25"
);
const { data, meta } = await res.json();import type { Tag, ListEnvelope } from "https://example-data.com/types/tags.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tags?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Tag>;import requests
res = requests.get(
"https://example-data.com/api/v1/tags",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 49,
"name": "caput villa",
"slug": "caput-villa",
"color": "#dfeeb5",
"useCount": 90
},
{
"id": 50,
"name": "crudelis",
"slug": "crudelis",
"color": "#d6f95f",
"useCount": 62
},
{
"id": 51,
"name": "abbas commodi attonbitus",
"slug": "abbas-commodi-attonbitus",
"color": "#d44a2e",
"useCount": 5
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 60,
"totalPages": 3
},
"links": {
"self": "/api/v1/tags?page=3",
"next": null,
"prev": "/api/v1/tags?page=2"
}
}