Giant Context
Knowledge BaseDevelopers
Join the Waitlist

Feature Requests

Submit, vote on, and manage feature requests.


GET

Get my feature requests

/me/feature-requests

Returns all feature requests submitted by the current user (up to 100). Each request includes its title, description, priority, status (open/planned/shipped/cancelled), vote count, and linked GitHub issue details if any.

SDK
import { createGiantContext } from "@giantcontext/sdk-typescript";
const gc = createGiantContext({ apiKey: process.env.GIANTCONTEXT_API_KEY! });
const { data: featureRequests } = await gc.featureRequests.listMyFeatureRequests();
GET

Get comments for a feature request

/me/feature-requests/{id}/comments

Returns all team comments and responses for a specific feature request owned by the current user. Each comment includes its ID, the comment text, the author name, and a creation timestamp. Comments are returned in chronological order.

Parameters
idRequired
path · string
SDK
import { createGiantContext } from "@giantcontext/sdk-typescript";
const gc = createGiantContext({ apiKey: process.env.GIANTCONTEXT_API_KEY! });
const { data: comments } = await gc.featureRequests.getFeatureRequestComments("feature-request-id");

Built byHuman
This content was designed and written by a human.
    Socials
    • Discord
    • BlueSky

    © 2026 Giant Context
    PrivacyTerms of UseCookie Policy
    Feature Requests