> ## Documentation Index
> Fetch the complete documentation index at: https://aisa.one/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Use AIsa in Manus

> Give Manus access to AIsa's APIs, Skills, and LLMs with a single prompt.

Manus is a cloud agent that can run code and call HTTP APIs inside its own sandbox. That means it doesn't need a provider config — you hand it your AIsa API key and one prompt, and it wires itself up.

AIsa endpoint:

```txt theme={null}
https://api.aisa.one/v1
```

## Prerequisites

Before you start, make sure you have:

* An AIsa API key ([console.aisa.one/api-keys](https://console.aisa.one/api-keys))
* A [Manus](https://manus.im) account

## 1. Start a Manus task with the setup prompt

Create a new task in Manus and paste:

```txt theme={null}
My AIsa API key is sk-aisa-... — keep it only in this task's environment and never print it in your output.
Read https://aisa.one/docs/agent-quickstart.md and help me safely connect, configure, and use AIsa's APIs, Skills, and LLMs in this agent environment.
```

Replace `sk-aisa-...` with your real key. Manus will fetch AIsa's agent-facing instructions, store the key as an environment variable in its sandbox, and verify the connection against `https://api.aisa.one/v1`.

<Tip>
  Create a dedicated key labeled `manus` for this, so you can rotate or revoke it independently. See [Authentication](/docs/guides/authentication).
</Tip>

## 2. Use AIsa capabilities in the task

Once connected, ask Manus to use AIsa directly:

```txt theme={null}
Use AIsa capabilities to search the web and summarize the latest information about Manus.
```

Manus can now call any AIsa capability from within its sandbox — LLM inference across the full [model catalog](/docs/guides/models), plus AIsa's API and Skills layer for search, data, and media.

## 3. Reuse the setup in later tasks

Manus tasks are isolated, so a new task starts without your key. Two options:

* Paste the same setup prompt (with your key) at the start of each task that needs AIsa.
* If your Manus workspace supports saved knowledge or custom instructions, save the setup prompt there — but store the key itself somewhere you control and paste it per task, rather than persisting it in shared workspace settings.

## Quick reference

| Item                    | Value                                                                                                                                                    |
| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| API base URL            | `https://api.aisa.one/v1`                                                                                                                                |
| API key                 | `sk-aisa-...` (use a dedicated key for Manus)                                                                                                            |
| Capability setup prompt | `Read https://aisa.one/docs/agent-quickstart.md and help me safely connect, configure, and use AIsa's APIs, Skills, and LLMs in this agent environment.` |
| Scope                   | Per task — reconnect in each new task                                                                                                                    |

## Troubleshooting

| Problem                            | Fix                                                                                     |
| ---------------------------------- | --------------------------------------------------------------------------------------- |
| Manus can't reach the endpoint     | Ask it to retry `https://api.aisa.one/v1/models` and show the HTTP status               |
| Authentication error (401)         | Confirm the key is valid in the [dashboard](https://console.aisa.one), then re-paste it |
| Manus forgot the key in a new task | Expected — paste the setup prompt again in the new task                                 |
| Worried about key exposure         | Use a dedicated low-limit key and rotate it after sensitive tasks                       |

## Related

<CardGroup cols={3}>
  <Card title="Use AIsa in OpenClaw" icon="screwdriver-wrench" href="/docs/guides/tutorials/use-aisa-in-openclaw">
    Configure a self-hosted agent runtime with AIsa.
  </Card>

  <Card title="Authentication" icon="key" href="/docs/guides/authentication">
    API key creation, rotation, and storage best practices.
  </Card>

  <Card title="Model Catalog" icon="list" href="/docs/guides/models">
    Browse the models Manus can call through AIsa.
  </Card>
</CardGroup>
