For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
SupportPlayground
DocumentationAPI ReferenceRelease Notes
DocumentationAPI ReferenceRelease Notes
  • Get Started
    • Welcome
    • Quick Start
  • Learn About MultiOn
    • Browser Extension
    • Sessions
    • Retrieve
    • Skills
  • Build With MultiOn
    • Post on X
    • Scrape H&M
    • Order on Amazon
    • Cookbook
LogoLogo
SupportPlayground
On this page
  • Create your first agent
  • Learn concepts
  • Start building
Get Started

Quick Start

Was this page helpful?
Previous

Browser Extension

Next
Built with

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.

Browser Extension

Learn to use the browser extension

Sessions

Learn to manage agent sessions

Retrieve

Learn to scrape structured data

Skills

Learn to create agent skills

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! 🙌

Scrape H&M

Learn to use step and retrieve to scrape structured data

Post on X

Learn to use browse and local mode to take actions autonomously