Skip to content
Developer Platform

Build governance-native applications.

Everything you need to integrate identity, proxies, voting, and corporate actions into your product.

REST + GraphQL APIs

Full governance surface: identity, proxies, votes, corporate actions, communications.

SDKs

Native SDKs for TypeScript, Python, and Java. Type-safe, tested, versioned.

Webhooks

Subscribe to meeting, vote, ownership, and settlement events with retries and signing.

OAuth 2.0 + API Keys

First-party and third-party auth flows with scoped tokens and rotation.

OpenAPI + Docs

OpenAPI 3 spec, quickstarts, sample code, and cookbook recipes.

GitHub + Community

Open samples, issue tracker, and developer community.

Sample

import { Proxy } from "@koreproxy/sdk";

const client = new Proxy({ apiKey: process.env.KOREPROXY_KEY });

const meeting = await client.meetings.create({
  issuerId: "iss_9f2",
  recordDate: "2026-03-15",
  type: "annual",
});

await client.proxies.distribute({ meetingId: meeting.id });