Hong Kong University of Science and Technology Tags API

Point-of-interest categories.

Operations 1

GET /tags List point-of-interest categories #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/hkust-tags-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

hkust-tags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: HKUST Path Advisor Tags API
  version: '1.0'
  description: Public, keyless JSON API behind HKUST Path Advisor, the university's indoor/outdoor campus wayfinding service at https://pathadvisor.ust.hk.
  contact:
    name: HKUST Information Technology Services Office
    url: https://itso.hkust.edu.hk/
  x-operator: institution
  x-artifact-provenance:
    generated: '2026-08-30'
    method: probed
    source: Live unauthenticated GET probes against https://pathadvisor.ust.hk/api on 2026-08-30. Endpoints confirmed by a 200 or a distinguishing non-generic error; the service returns a generic 400 {"error":{"message":"Bad request"}} for unknown routes, so only 200 and 401 responses were treated as proof a route exists.
servers:
- url: https://pathadvisor.ust.hk/api
  description: Production. CORS Access-Control-Allow-Origin *; HSTS; nginx. No API key required.
tags:
- name: Tags
  description: Point-of-interest categories.
paths:
  /tags:
    get:
      tags:
      - Tags
      operationId: listTags
      summary: List point-of-interest categories
      description: Returns the categories Path Advisor uses to classify campus features — accessible toilet, guest accommodation, lift, and so on — each with the URL of its map icon.
      responses:
        '200':
          description: Tag list.
          content:
            application/json:
              schema:
                type: object
                required:
                - data
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Tag'
              example:
                data:
                - _id: accessibleToilet
                  name: Accessible Toilet
                  imageUrl: https://pathadvisor.ust.hk/api/tags/accessibleToilet.png
components:
  schemas:
    Tag:
      type: object
      description: A point-of-interest category.
      required:
      - _id
      - name
      properties:
        _id:
          type: string
          example: accessibleToilet
        name:
          type: string
          example: Accessible Toilet
        imageUrl:
          type: string
          format: uri
          description: Map icon for the category.
          example: https://pathadvisor.ust.hk/api/tags/accessibleToilet.png