action vocadb_get_api_tags_top { label: "get_api_tags_top" provider: vocadb method: GET path: "/api/tags/top" encoding: json input: { type: "object" properties: { categoryName: { type: "string" } entryType: { type: "string" enum: ["Undefined", "Album", "Artist", "DiscussionTopic", "PV", "ReleaseEvent", "ReleaseEventSeries", "Song", "SongList", "Tag", "User", "Venue"] } lang: { type: "string" enum: ["Default", "Japanese", "Romaji", "English"] } maxResults: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { additionalNames: { type: "string" } categoryName: { type: "string" } id: { type: "integer" format: "int32" } name: { type: "string" } urlSlug: { type: "string" } } additionalProperties: false } } }