The .do platform empowers you to build and connect agentic workflows, automate tasks, and manage your business processes as code. But did you know you can extend these powerful capabilities directly into your own applications and services? That's where the .do SDK comes in.
This Software Development Kit (sdk.do) is your key to unlocking the full potential of the .do platform programmatically. With the .do SDK, you can:
Think of the .do SDK as the bridge between your code and the .do platform. It simplifies the process of interacting with .do APIs, allowing you to focus on building innovative solutions rather than wrestling with low-level HTTP requests.
If you're looking to embed .do platform functionality within your own software, the SDK offers several key advantages:
Ready to start integrating? Getting started with the .do SDK is straightforward.
First, you'll need to install the SDK into your project. You can typically do this using a package manager like npm or yarn:
npm install @do/sdk
# or
yarn add @do/sdk
Once installed, you can initialize the SDK using your API key and start interacting with the .do platform. Here's a simple example in TypeScript demonstrating how to fetch a list of available agents:
import { DoSDK } from '@do/sdk';
const sdk = new DoSDK({
apiKey: 'YOUR_API_KEY', // Replace with your actual API key
});
// Example: Fetch available agents
async function listAgents() {
try {
const agents = await sdk.agents.list();
console.log('Available Agents:', agents);
} catch (error) {
console.error('Error listing agents:', error);
}
}
listAgents();
This short code snippet illustrates the simplicity of using the .do SDK. With just a few lines, you can connect to the platform and start programmatically accessing its features.
The possibilities are vast! With the .do SDK, you can build a wide range of applications and integrations, including:
Embark on your developer journey with the .do SDK. It's the essential tool for extending the power of the .do platform and building cutting-edge solutions.
The .do SDK allows developers to programmatically interact with the .do platform, enabling them to build custom applications, automate workflows, and integrate with existing services.
You can install the .do SDK via npm or yarn package managers. Detailed installation instructions and documentation are available on our developer portal.
The .do SDK is designed to be used with a variety of programming languages. We primarily provide examples and support for TypeScript/JavaScript, but the underlying API can be accessed from any language capable of making HTTP requests.
Ready to start building? Visit sdk.do for comprehensive documentation and examples. Develop with Ease!