unicum.gg

Glossary term

GET
/glossary/{slug}

One glossary term in full: its definition, the body of the entry with every mention of another term already resolved to that term's slug, the terms it relates to, and the pages of the site it points at.

Path Parameters

slug*string

Term slug, e.g. wn8.

Response Body

application/json

curl -X GET "https://example.com/glossary/slug"
{  "slug": "string",  "term": "string",  "aliases": [    "string"  ],  "category": "vehicles",  "short": "string",  "body": [    {      "kind": "string",      "segments": [        {          "text": "string",          "slug": "string"        }      ]    }  ],  "related": [    {      "slug": "string",      "term": "string",      "aliases": [        "string"      ],      "category": "vehicles",      "short": "string"    }  ],  "links": [    {      "target": "top-players",      "slug": "string",      "label": "string"    }  ]}