Skip to content

Fetch Related Tag Associations by ID

GET /tags/{id}/related-tags

Server: https://gamma.openfish.fun

Tags: Tags

This endpoint surfaces the join-table entries that describe how tags are connected. Each record includes rank ordering information for the relationship.


NameInTypeDescription
idpathstringRequired. Tag ID

200 — The body contains a JSON array of RelatedTag association objects describing each connection.

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

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