Skip to content

Fetch Expanded Related Tags by Slug

GET /tags/slug/{slug}/related-tags/tags

Server: https://gamma.openfish.fun

Tags: Tags

This is the slug-based variant of the expanded related tags endpoint. It resolves every related-tag association into a complete Tag entity, ordered by relationship rank.


NameInTypeDescription
slugpathstringRequired. Tag slug

200 — A JSON array of fully-populated Tag objects representing the related tags.

[
{
"id": "55",
"label": "DeFi",
"slug": "defi",
"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/slug/crypto/related-tags/tags"