Browse docs and collections ⌄
Overview
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tags/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tags/10" ); const tag = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tags.d.ts https://example-data.com/types/tags.d.ts
import type { Tag } from "./types/tags";
const res = await fetch(
"https://example-data.com/api/v1/tags/10"
);
const tag = (await res.json()) as Tag; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tags/10"
)
tag = res.json() Response
{
"id": 10,
"name": "help",
"slug": "help",
"color": "#0d33b5",
"useCount": 405
}