> For the complete documentation index, see [llms.txt](https://agpt.co/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://agpt.co/docs/platform/using-the-platform/getting-started-cloud.md).

# Getting Started (Cloud)

## Introduction

This guide will get you up and running on the hosted AutoGPT Platform at [platform.agpt.co](https://platform.agpt.co). No local installation or Docker setup is required — just sign up and start building.

{% hint style="info" %}
Looking to self-host instead? See the [Self-Hosting Guide](/docs/platform/self-hosting/getting-started.md).
{% endhint %}

## Creating Your Account

1. Navigate to [platform.agpt.co](https://platform.agpt.co)
2. Click **Sign Up** and create your account
3. Once signed in, you'll land on the **AutoPilot** home screen

That's it — you're ready to go. Available credits and managed AI providers depend on your plan and account configuration. If a block requires credentials that are not included, the platform will prompt you to connect your own. See the [pricing page](https://agpt.co/pricing) for current plan details.

## Platform Navigation

The AutoGPT Platform has four main areas, accessible from the main navigation:

| Nav Button      | URL                                                                  | Description                                       |
| --------------- | -------------------------------------------------------------------- | ------------------------------------------------- |
| **Home**        | [platform.agpt.co](https://platform.agpt.co)                         | AutoPilot — your AI assistant for the platform    |
| **Build**       | [platform.agpt.co/build](https://platform.agpt.co/build)             | Agent Builder — visual editor for creating agents |
| **Agents**      | [platform.agpt.co/library](https://platform.agpt.co/library)         | Your Agent Library — all your saved agents        |
| **Marketplace** | [platform.agpt.co/marketplace](https://platform.agpt.co/marketplace) | Community marketplace for discovering agents      |

Use the automation-credits wallet or **Billing** settings to review your balance. Account settings and integrations are available from **Settings**.

## What to Do First

Here are three great ways to get started:

### Option 1: Chat with AutoPilot

Click **Home** in the nav bar to open AutoPilot. You can ask it to perform supported actions such as browsing the marketplace, running agents, building agents, generating images, and conducting research. It's the fastest way to experience the platform.

### Option 2: Add an Agent from the Marketplace

1. Click **Marketplace** in the nav bar
2. Browse or search for an agent that interests you
3. Click on an agent to view its details
4. Click **Add to Library**
5. Navigate to **Agents** to find it in your library
6. Click on the agent and press **New agent task** to run it

### Option 3: Build Your Own Agent

1. Click **Build** in the nav bar to open the Agent Builder
2. Open the Blocks menu on the left-hand side
3. Add an **Input Block**, an **AI Text Generator Block**, and an **Output Block**
4. Connect them together by dragging between their pins
5. Press **Ctrl+S** (Windows/Linux) or **Cmd+S** (macOS), or click the save button to save your agent
6. Navigate to **Agents** to find and run it

For a detailed walkthrough, see [Creating a Basic Agent](/docs/platform/tutorials/create-basic-agent.md).

## Key Concepts

Before diving deeper, here are the core concepts you'll encounter:

* **Agent**: An automated workflow you design to perform specific tasks. Agents are made up of connected blocks.
* **Block**: A single action within an agent — such as generating text with AI, sending an email, or looking up data. The available block catalog depends on the platform deployment.
* **Task**: A single execution of an agent. When you run an agent with a set of inputs, that creates a task. You can view the task's inputs, outputs, and reported cost.
* **AutoPilot**: Your AI assistant that can perform supported platform actions through natural conversation.
* **Marketplace**: A public library of community-built agents you can add to your own library.
* **Credits**: The currency used for metered block execution. Pricing varies by block and usage; review your balance from the automation-credits wallet or Billing settings.

## Next Steps

| Guide                                                                           | Description                              |
| ------------------------------------------------------------------------------- | ---------------------------------------- |
| [AutoPilot](/docs/platform/using-the-platform/autopilot.md)                     | Learn what AutoPilot can do for you      |
| [Agent Builder Guide](/docs/platform/using-the-platform/agent-builder-guide.md) | Master the visual agent builder          |
| [Agent Library](/docs/platform/using-the-platform/agent-library.md)             | Manage your agents, tasks, and schedules |
| [Marketplace](/docs/platform/using-the-platform/marketplace.md)                 | Discover and share agents                |
| [Credits & Billing](/docs/platform/using-the-platform/credits-and-billing.md)   | Understand the credit system             |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://agpt.co/docs/platform/using-the-platform/getting-started-cloud.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
