BuildE2EBuildE2E
DocsStart Free
Get StartedQuickstart

Quickstart

Infrastructure layer for your agents.

BuildE2E gives you all the tools needed to ship agents, from data fetch to code and browser sandboxes. One SDK, one API key, one bill.

No credit card required. Start free with $10 in credits.

Start in 3 steps

Go from zero setup to your first working agent flow quickly.
01

Create API key

Sign up and generate your API key from the dashboard in under a minute.

02

Install SDK

Add BuildE2E SDK and configure your API key once in your app.

03

Ship workflows

Use Fetch and Sandboxes together to ship real agent tasks.

Install the SDK

bash
npm install @builde2e/sdk

Make your first request

Replace uc-YOUR-API-KEY with your key and run:
javascript
import BuildE2E from '@builde2e/sdk';

BuildE2E.setApiKey('uc-YOUR-API-KEY');

const result = await BuildE2E.fetch({
  url: 'https://example.com',
  type: 'markdown'
});

console.log(result.markdown);

All tools you need to ship agents

Mix and match APIs based on your workflow needs.

Next steps