Get Started
Maxun Cloud
- Sign up at https://app.maxun.dev/register.
- Set up your data extraction robot. Choose your robot type.
- Name your robot and set it to run regularly, like daily.
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
- Node.js
- Python
npm install maxun-sdk
pip install maxun
Requirements
- API Key from Maxun Dashboard
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.
- Node.js
- Python
// 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'] }
);
# Scrape content from a website in markdown and HTML
from maxun import Scrape, Config
scraper = Scrape(Config(api_key="your-api-key"))
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.