Giant Context
Knowledge BaseDevelopers
Join the Waitlist

API Keys

Create and manage API keys for programmatic access.


GET

Get my API keys

/me/api-keys

Returns all active API keys belonging to the current user. Each key includes its ID, name, creation date, expiration date, and associated organization. The secret key value is not returned for security.

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

Get organization API keys

/organizations/{id}/api-keys

Returns all active API keys for an organization. Each key object includes its ID, name, creation date, expiration date, and the user it is associated with. The secret key value is never returned in list responses. Requires admin or owner role within the organization.

Parameters
idRequired
path · string
SDK
import { createGiantContext } from "@giantcontext/sdk-typescript";
const gc = createGiantContext({ apiKey: process.env.GIANTCONTEXT_API_KEY! });
const { data: apiKeys } = await gc.apiKeys.listOrganizationApiKeys("org_123");

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

    © 2026 Giant Context
    PrivacyTerms of UseCookie Policy