Skip to content
TechIT Network
Developer Platform

Build on the startup operating system

Access execution intelligence programmatically. API, SDK, MCP, and plugins — designed to fit into your stack and your agents.

REST API

Planned

Programmatic access to startups, evaluations, GSIS scores, tasks, and documents.

TypeScript SDK

Planned

A typed client for the TechIT API, with helpers for auth, pagination, and webhooks.

MCP Server

Planned

Expose TechIT to any MCP-compatible AI client as first-class tools and context.

Plugin Ecosystem

Exploring

Extend the workspace with custom agents, tools, and integrations.

REST API — get a GSIS scorebash
curl https://api.techit.network/v1/startups/{id}/gsis \
  -H "Authorization: Bearer $TECHIT_API_KEY"

# Response
{
  "startup_id": "st_9f2c...",
  "gsis": 68,
  "decay_factor": 0.91,
  "dimensions": {
    "product_progress": 82,
    "execution_velocity": 74,
    "market_readiness": 61,
    "revenue_signal": 40
  }
}
TypeScript SDK — create & scoretypescript
import { TechIT } from "@techit/sdk";

const techit = new TechIT({ apiKey: process.env.TECHIT_API_KEY });

const startup = await techit.startups.create({
  name: "AgriCredit",
  problem: "Smallholder farmers lack access to fair credit",
});

const score = await techit.gsis.get(startup.id);
console.log(`GSIS: ${score.gsis}`);

Integration status

What's live today and what's coming to the platform.

Payments (African-first stack)Live
Email (Resend)Live
AuthenticationLive
WebhooksPlanned
Zapier / automationPlanned
Slack notificationsExploring

Get early developer access

The developer platform is rolling out with the private beta. Join now to get API keys as soon as they're available.

Join the Private Beta