1C Platform1cPlatform

Documentation

Everything you need to build with 1cPlatform

Popular:
Quick Start

Get up and running in 5 minutes

Complete API documentation

Guides & Tutorials

Step-by-step learning paths

SDKs & Tools

Client libraries and CLI tools

  • JavaScript SDK
  • Python SDK
  • CLI Reference
  • VS Code Extension

Start building in minutes

Install the SDK and make your first API call

quick-start.js
// Install the SDK
npm install @1cplatform/sdk

// Initialize the client
import { OneC } from '@1cplatform/sdk';

const client = new OneC({
  apiKey: process.env.ONEC_API_KEY
});

// Create an AI agent
const agent = await client.agents.create({
  name: 'my-first-agent',
  model: 'gpt-4',
  instructions: 'You are a helpful assistant'
});

console.log('Agent created:', agent.id);
FAQ

Documentation FAQ

Common questions about building with 1C Platform.

Sign up for a free Starter account, install our SDK via npm, and follow our Quick Start guide to build your first AI agent in under 5 minutes. The Starter plan includes 1,000 API calls per month at no cost.