Skip to content

Fetch a Tag by Its ID

GET /tags/{id}

Server: https://gamma.openfish.fun

Tags: Tags


NameInTypeDescription
idpathstringRequired. The unique identifier of the tag to retrieve

200 — On success, the body contains a single Tag object with all its properties.

404 — No tag exists with the provided ID.

{
"id": "42",
"label": "Crypto",
"slug": "crypto",
"forceShow": false,
"forceHide": false,
"isCarousel": false,
"requiresTranslation": false,
"createdAt": "2025-01-01T00:00:00+00:00",
"updatedAt": "2025-01-01T00:00:00+00:00"
}

Terminal window
curl "https://gamma.openfish.fun/tags/42"