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

# ListFaucetInstruments

> Token instruments currently supported by the faucet

Returns the list of token instruments that the faucet can dispense in the active environment. Use this before calling the faucet to discover which instruments are eligible and what limits apply.

The faucet is enabled in development environments only.

## Request

```proto theme={null}
message ListFaucetInstrumentsRequest {}
```

## Response

<ParamField path="instruments" type="FaucetInstrument[]">
  Each entry describes a faucet-enabled instrument: its identifier, optional admin party, the per-request amount, and any cooldown or daily cap that the faucet enforces.
</ParamField>

## Example

```bash theme={null}
grpcurl orderbook-devnet.silvana.dev:443 \
  silvana.ledger.v1.DAppProviderService/ListFaucetInstruments
```

## See also

* `RequestFaucet` — request funds for one of the instruments returned here. Documented in the [Ledger Gateway API](/sdk/grpc-api/ledger-gateway-api#faucet) overview.
* [`GetBalances`](/agentic-api/core/get-balances) — confirm that funds arrived after a faucet request.
