Discover. Compose. Execute.
Your Business, As a Service Transform every business capability into a discoverable, on-demand API. Browse, compose, and execute any function across your organization with our intelligent service registry.
Join waitlist
import { Do } from '@do-sdk/core';
// Initialize the .do platform
const platform = new Do();
// List all available business services in your organization
const listAvailableServices = async () => {
try {
const services = await platform.services.list();
console.log('Available Services:', services);
// Example Output:
// [
// { name: 'kyc.do', description: 'Perform KYC/KYB checks.' },
// { name: 'invoicing.do', description: 'Generate and send invoices.' },
// { name: 'support.do', description: 'Manage customer support tickets.' }
// ]
} catch (error) {
console.error('Error listing services:', error);
}
};
listAvailableServices();