Quick Start

Create your first agent

1

Generate API key

Sign up on our developer console and create a new API key. Remember, your API key is your access secret—keep it safe with environment variables.

2

Install package

Install the MultiOn SDK for your preferred language.

$npm install multion
3

Send your first request

Try scraping a webpage with the Agent API. Be sure to replace MULTION_API_KEY with your actual API key.

$curl -X POST https://api.multion.ai/v1/web/browse \
> -H "X_MULTION_API_KEY: MULTION_API_KEY" \
> -H "Content-Type: application/json" \
> -d '{
> "cmd": "Find the top comment of the top post on Hackernews.",
> "url": "https://news.ycombinator.com/"
> }'
4

Develop locally with the browser extension

Find the MultiOn Browser Extension on the Chrome Web Store and click “Add to Chrome” to add it to your browser. Make sure the API Enabled option is checked. Learn more about the browser extension here.

Learn concepts

Learn more about core MultiOn concepts to build complex applications with agents.

Start building

That’s it! You’re ready to start building your own autonomous web agents. Here are a couple of examples to get you started. Happy building! 🙌