> For the complete documentation index, see [llms.txt](https://mogami.gitbook.io/mogami/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mogami.gitbook.io/mogami/faciliator-server/getting-started-x402-v2.md).

# Getting started x402 V2

Mogami facilitator server is available online at [https://v2.facilitator.mogami.tech](https://v2.facilitator.mogami.tech/), you can use it as much as you want!

The Mogami Facilitator is also available as a Docker image on Docker Hub. You can start it with the following command:

```bash
docker run -e PORT=8080 -p 8080:8080 mogamitech/facilitator:2.0.3
```

To check whether the service is running, execute:

```bash
curl http://127.0.0.1:8080/support
```

If you want to use the facilitator out of the box, it is configured with the address\
`0x7553F6FA4Fb62986b64f79aEFa1fB93ea64A22b1`.\
Simply visit the Coinbase faucet and request some Ethers for this address.

### Configuration

You can change the facilitator private key and the RPC servers used by setting the following parameters:&#x20;

```bash
docker run 	-e PORT=4020 \
		-e X402_FACILITATOR_PRIVATE_KEY=FACILITATOR_PRIVATE_KEY \
		-e RPC_URL_BASE=https://base-mainnet.infura.io/v3/INFURA_PRIVATE_KEY_FOR_BASE \
		-e RPC_URL_BASE_SEPOLIA=https://base-sepolia.infura.io/v3/INFURA_PRIVATE_KEY_FOR_BASE_SEPOLIA \
		-p 4020:8080 \
		mogamitech/facilitator:2.0.3
```
