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

# Create Instance

Create a `PeaqRobot` instance to access wallet, identity, and storage modules.

```python theme={"theme":{"light":"github-light-default","dark":"github-dark"}}
from peaq_robot import PeaqRobot

sdk = PeaqRobot()

# 2) Use keystore (recommended) or explicit mnemonic
# Keystore path can be set via env PEAQ_ROBOT_KEYSTORE

# 3) Choose network (testnet by default). To override:

sdk = PeaqRobot(network="agung", mnemonic="your 12/24 words ...")   # or "peaq" / custom wss URL
```

Quick check:

```python theme={"theme":{"light":"github-light-default","dark":"github-dark"}}
print(sdk.address)
print(sdk.balance)  # float
```

Properties:

* `sdk.address`: SS58 address of the active keypair
* `sdk.balance`: free balance in AGUNG units (float)
* `sdk.id`: identity module
* `sdk.store`: storage module
