action bungie_trending_get_trending_entry_detail { label: "Trending.GetTrendingEntryDetail" description: "Returns the detailed results for a specific trending entry. Note that trending entries are uniquely identified by a combination of *both* the TrendingEntryType *and* the identifier: the identifier alone is not guaranteed to be globally unique." provider: bungie method: GET path: "/Trending/Details/{trendingEntryType}/{identifier}/" encoding: json input: { type: "object" properties: { identifier: { type: "string" } trendingEntryType: { type: "integer" format: "int32" } } required: ["identifier", "trendingEntryType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }