GPT Core Client SDK

TypeScript SDK for GPT Core Platform — Document extraction, AI agents, and workspace management.

npm version TypeScript Node 18+ License
npm install @gpt-core/client

Start building in minutes

Extract documents, manage workspaces, and stream results with a few lines of code.

import { GPTCore } from '@gpt-core/client';

const client = new GPTCore({
  apiKey: process.env.GPT_API_KEY,
  baseURL: 'https://api.gptintegrators.com'
});

// Extract structured data from a document
const result = await client.extraction.documents.create({
  workspaceId: 'ws_123',
  fileId: 'file_456',
  agentId: 'agent_789'
});

console.log(result.data);

Everything you need

A complete SDK for document extraction and AI agent workflows.

Document Extraction

Extract structured data from PDFs, images, and Office documents with AI-powered agents.

AI Agents

Build, deploy, and version AI-powered extraction agents with custom schemas.

Streaming

Real-time SSE streaming for long-running extraction and chat operations.

Workspaces

Multi-tenant workspace management with scoped API keys and permissions.

Full TypeScript

Complete type definitions, IntelliSense support, and compile-time safety.

Pagination

Built-in helpers for cursor and page-based paginated responses.

Interactive API Documentation

Explore every endpoint with Scalar-powered docs. Try requests directly from your browser with built-in authentication.

Open API Reference

API Collections

Import into your favorite HTTP client and start testing immediately.