Data as Code

Transform Data on Demand

Simplify complex data manipulation. From cleaning and formatting to restructuring, our AI agents handle it all through a single, powerful API.

Join waitlist

transform.do

import { Agent } from '@do-sdk/agent';

const transformAgent = new Agent('transform.do');

const rawData = {
  user_id: 123,
  first_name: 'Jane',
  last_name: 'Doe',
  email_address: 'jane.doe@example.com',
  joinDate: '2023-10-27T10:00:00Z'
};

const transformedData = await transformAgent.run({
  input: rawData,
  instructions: 'Rename keys to camelCase and combine first/last name into a single "fullName" field.'
});

// transformedData equals:
// {
//   userId: 123,
//   fullName: 'Jane Doe',
//   emailAddress: 'jane.doe@example.com',
//   joinDate: '2023-10-27T10:00:00Z'
// }

Deliver economically valuable work

Frequently Asked Questions

Do Work. With AI.