The Giant Context Developer Portal
146 REST endpoints across 29 groups, official TypeScript and Python SDKs, and MCP-native agent access.
Make Your First Request
Authenticate with your API key and fetch your own profile — in TypeScript, Python, or curl.
Get current user profile and permissions
Récupère les détails de l'utilisateur actuellement authentifié.
import osfrom giantcontext import GiantContext
gc = GiantContext(api_key=os.environ["GIANTCONTEXT_API_KEY"])
me = gc.me.get_me()
Or Skip the Code Entirely
The same pipeline speaks natural language. Send a prompt through any MCP client — or the drafts API — and review the draft it returns.
Prompt — any MCP client
Build the /early-access page for Giant Context.
The conversion page every CTA points to. ONE job: sign the visitor up.
Canonical facts (use these, invent nothing):- One AI with shared context across website, email, forms, chat, knowledge base, and CRM.- Drafts wait for human approval; every action carries an audit trail.
Design intent: SHORT page — hero with the ask, the existing"Sign-up Form" form, one trust beat, close. No invented numbers.The same request over REST
# Exchange your API key for a bearer tokenTOKEN=$(curl -s -X POST https://api.giantcontext.com/auth/token \ -H "Content-Type: application/json" \ -d "{\"apiKey\": \"$GIANTCONTEXT_API_KEY\"}" | jq -r .token)
# Generate a draft from your briefcurl -X POST https://api.giantcontext.com/drafts/generate/new \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type: application/json" \ -d @early-access-brief.json
{ "draftId": "8df476bd-…", "status": "pending" }API Reference
All 29 groups and 146 endpoints — every entry links to its reference page.
Health
Get a unique LLM-generated message, proving the AI pipeline is live
Feature Requests
List everyone's feature requests ranked by votes, showing whether you voted
List feature requests you filed, with status, vote count and GitHub issue link
List comments for a feature request
Me
List your suspension appeal thread, both your messages and admin replies
List the caller's notifications, filterable by read status and type
List organizations you belong to and your role in each
List pending org invitations addressed to the caller's email, with offered role
Builder
Get every content type and the blocks allowed in it
Get the styles schema shared by every block
Get one block type's own fields and hints; shared styles come from getBlockStyles
Delete a section and every block inside it; recoverable from version history
Bug Reports
List bug reports you filed, with severity, status and GitHub issue link
List comments for a bug report
API Keys
List your own API keys across organizations; never returns the secret value
List all API keys in an organization; metadata only, no secret values
Official SDKs
Fully typed client libraries, in sync with the API.
Latest changes
Integration Guides
Any MCP client connects to Giant Context
Plus
Generate Your API Key and Build
Create a key in the console and make your first request in minutes.