Skip to main content

Get Started

Maxun Cloud

That’s it! Most users create their first robot in less than a minute.

Maxun SDKs

Maxun provides official Node.js and Python SDKs for creating and running robots programmatically.

Installation

npm install maxun-sdk

Requirements

Environment Variables

MAXUN_API_KEY=your-api-key

# For LLM Extraction (optional)
ANTHROPIC_API_KEY=your-anthropic-key
OPENAI_API_KEY=your-openai-key

Quick Start

Create and run a robot programmatically using the Maxun SDK.

// Scrape content from a website in markdown and HTML
import { Scrape } from 'maxun-sdk';

const scraper = new Scrape({apiKey: process.env.MAXUN_API_KEY});

const robot = await scraper.create(
'Content Scraper',
'https://example.com/article',
{ formats: ['markdown', 'html'] }
);

For more detailed usage, see the Node.js SDK and Python SDK guides.

Maxun Community Edition

Maxun is open-source and can run on your system. Learn how to setup Maxun locally.