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

# TypeScript SDK

> Install and use @ameo/sdk against the public REST API.

## Install

```bash theme={null}
npm install @ameo/sdk
```

## Quickstart

```ts theme={null}
import { AMEO } from "@ameo/sdk";

const ameo = new AMEO({
  baseUrl: "https://agentic-micro-economy-os.onrender.com",
});

const verified = await ameo.verify(
  "{real_tx_from_latest_cycle}",
);

console.log(verified.decisionStatus, verified.mantlescanUrl);
```

## Surface

* `ameo.agents.register()` / `ameo.agents.get(tokenId)`
* `ameo.decisions.create(input)` / `ameo.decisions.list()` / `ameo.decisions.get(id)`
* `ameo.verify(txHash)`
* `ameo.policies.list()`
* `ameo.skills.list()`

Package source: `packages/sdk` in the GitHub repository.

See also the [REST API v1 reference](/api/v1).
