# Testnet Faucet

{% stepper %}
{% step %}

#### Using Supra CLI

{% hint style="info" %}
For the latest RPC URL, please refer to the [Supra Network Information](/supra/network/move/network-information.md) page.
{% endhint %}

Option 1: Using account profile.

```
supra move account fund-with-faucet --profile <PROFILE_NAME> --url <RPC_URL>
```

Option 2: Using account address.

```
supra move account fund-with-faucet --account <ADDRESS> --url <RPC_URL>
```

Example Output:

```json
{
  "Accepted": "TXN-HASH"
}
```

{% endstep %}

{% step %}

#### Using GET request

Make a GET call to the faucet endpoint by inserting your address into the following URL.

```
https://rpc-testnet.supra.com/rpc/v1/wallet/faucet/<YOUR_ACCOUNT_ADDRESS>
```

Example Output:

```json
{
    "Accepted": "TXN-HASH"
}
```

{% endstep %}

{% step %}

#### Using [StarKey Wallet](https://www.starkey.app)

* Select Testnet from the network dropdown.
* Select the Supra token from the asset list.
* Press the "Collect" faucet button.
  {% endstep %}
  {% endstepper %}


---

# Agent Instructions: 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:

```
GET https://supraoracles.gitbook.io/supra/network/move/getting-started/testnet-faucet.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
