Fetch Related Tag Associations by ID
Endpoint
Section titled “Endpoint”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.
Path Parameters
Section titled “Path Parameters”| Name | In | Type | Description |
|---|---|---|---|
id | path | string | Required. Tag ID |
Response
Section titled “Response”200 — The body contains a JSON array of RelatedTag association objects describing each connection.
[ { "id": 1, "tagID": "42", "relatedTagID": "55", "rank": 1 }]curl "https://gamma.openfish.fun/tags/42/related-tags"