SDKs in Development

We’re actively working on native SDKs for additional programming languages. Each SDK will provide the same powerful features as our Python SDK while following language-specific best practices.

JavaScript/TypeScript SDK

JavaScript SDK

The JavaScript SDK will support both Node.js and browser environments with full TypeScript support.

Planned Features

  • Promise-based and async/await APIs
  • Real-time streaming with EventSource
  • TypeScript type definitions
  • React hooks for easy integration
  • Automatic retries with exponential backoff

Preview

import { RunAgentClient } from '@runagent/sdk';

const client = new RunAgentClient({
  agentId: 'your-agent-id',
  apiKey: process.env.RUNAGENT_API_KEY
});

// Async/await
const result = await client.runGeneric({
  query: 'Hello, agent!'
});

// Streaming
const stream = client.streamGeneric({ query: 'Tell me a story' });
for await (const chunk of stream) {
  console.log(chunk);
}

Go SDK

Go SDK

Idiomatic Go client with excellent concurrency support.

Planned Features

  • Context-based cancellation
  • Concurrent request handling
  • Efficient connection reuse
  • Structured logging support
  • Middleware for customization

Preview

package main

import (
    "context"
    "fmt"
    "github.com/runagent-dev/runagent-go"
)

func main() {
    client := runagent.NewClient("your-agent-id").
        WithAPIKey("your-api-key")
    
    ctx := context.Background()
    resp, err := client.RunGeneric(ctx, runagent.Input{
        Query: "Hello, agent!",
    })
    
    if err != nil {
        panic(err)
    }
    
    fmt.Printf("Response: %v\n", resp)
}

Early Access Program

Want to try these SDKs before official release?
1

Join Beta

Sign up for our beta program at run-agent.ai/beta
2

Get Access

Receive early access to SDK releases and documentation
3

Provide Feedback

Help us improve the SDKs with your feedback

Community SDKs

Building an SDK for another language? We’d love to support you!

Guidelines for Community SDKs

  1. Follow API conventions - Use consistent method names
  2. Implement core features - Auth, sync/async, streaming
  3. Add tests - Comprehensive test coverage
  4. Document thoroughly - Examples and API reference
  5. Open source - Share with the community
High-quality community SDKs can become official:
  • Code review by our team
  • Integration into our CI/CD
  • Official documentation
  • Ongoing maintenance support

Stay Updated

Newsletter

Subscribe for SDK release announcementsSubscribe →

Discord

Join #sdk-development channelJoin Discord →

Request a Language

Don’t see your language listed? Let us know!

Request SDK Support

Vote for your preferred language or suggest a new one:Request Language →

Using the API Directly

While waiting for your preferred SDK, you can always use the REST API directly: