Skip to content

Fetch Expanded Related Tags by ID

GET /tags/{id}/related-tags/tags

Server: https://gamma.openfish.fun

Tags: Tags

Unlike the relationship-only endpoint, this one resolves each association into a complete Tag entity. The results come back ordered by rank.


NameInTypeDescription
idpathstringRequired. Tag ID

200 — A JSON array containing fully-populated Tag objects for every related tag.

[
{
"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/42/related-tags/tags"