> For the complete documentation index, see [llms.txt](https://movement.gitbook.io/movement/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://movement.gitbook.io/movement/connect-to-fuji-testnet.md).

# Connect to Fuji Testnet

**Connect to Fuji Testnet**

To connect to the Fuji Testnet instead of the Mainnet, use argument `--network-id=fuji`. You can get funds on the Testnet from the [faucet](https://faucet.avax.network/)

```
./avalanchego --network-id=fuji
```

To check  is done bootstrapping, in another terminal window call [`info.isBootstrapped`](https://docs.avax.network/apis/avalanchego/apis/info#infoisbootstrapped) by copying and pasting the following command:

```
curl -X POST --data '{
    "jsonrpc":"2.0",
    "id"     :1,
    "method" :"info.isBootstrapped",
    "params": {
        "chain":"X"
    }
}' -H 'content-type:application/json;' 127.0.0.1:9650/ext/info
```

If this returns `true`, the chain is bootstrapped; otherwise, it returns `false`
