© 2026 Hedgehog Software, LLC
transcript/:id
import { ApplyOptions } from '@sapphire/decorators'; import { Route, type RouteOptions } from '@sapphire/plugin-api'; @ApplyOptions<RouteOptions>({ route: 'transcript/:id', methods: ['GET'] }) export class TranscriptRoute extends Route { public async run(_request: Route.Request, response: Route.Response): Promise<void> { const { id } = _request.params as { id: string }; // Code... } }