We're excited to announce significant updates to our developer tools that make building with our platform faster and more intuitive.
API v2
Our new API version brings substantial improvements:
Performance Improvements
- 50% faster response times on average
- Streaming support for real-time applications
- Improved rate limits for high-volume use cases
New Endpoints
`` // New conversation endpoint const response = await api.conversations.create({ messages: [...], stream: true }); ``
SDK Updates
Our official SDKs have been updated with:
- TypeScript support with full type definitions
- Automatic retry logic for transient failures
- Built-in request queuing for rate limit handling
Python SDK
``` from ourplatform import Client
client = Client() response = client.complete("Hello, world!") ```
Node.js SDK
``` import { Client } from '@ourplatform/sdk';
const client = new Client(); const response = await client.complete("Hello, world!"); ```
Migration Guide
Moving from v1 to v2 is straightforward. Check our documentation for a complete migration guide with examples.
Getting Started
Visit our developer portal to get your API keys and start building today.
We're excited to announce significant updates to our developer tools that make building with our platform faster and more intuitive.
API v2
Our new API version brings substantial improvements:
Performance Improvements
- 50% faster response times on average
- Streaming support for real-time applications
- Improved rate limits for high-volume use cases
New Endpoints
`` // New conversation endpoint const response = await api.conversations.create({ messages: [...], stream: true }); ``
SDK Updates
Our official SDKs have been updated with:
- TypeScript support with full type definitions
- Automatic retry logic for transient failures
- Built-in request queuing for rate limit handling
Python SDK
``` from ourplatform import Client
client = Client() response = client.complete("Hello, world!") ```
Node.js SDK
``` import { Client } from '@ourplatform/sdk';
const client = new Client(); const response = await client.complete("Hello, world!"); ```
Migration Guide
Moving from v1 to v2 is straightforward. Check our documentation for a complete migration guide with examples.
Getting Started
Visit our developer portal to get your API keys and start building today.