Skip to content

Fetch Related Tag Associations by Slug

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

Server: https://gamma.openfish.fun

Tags: Tags

Works the same way as the ID-based lookup, but accepts a slug as the path parameter. Each returned record captures a ranked association between the source tag and another tag.


NameInTypeDescription
slugpathstringRequired. Tag slug

200 — Produces a JSON array of RelatedTag association objects.

[
{
"id": 1,
"tagID": "42",
"relatedTagID": "55",
"rank": 1
}
]

Terminal window
curl "https://gamma.openfish.fun/tags/slug/crypto/related-tags"