action nebl_testnet_get_faucet { label: "Withdraws testnet NEBL to the specified address" description: "Withdraw testnet NEBL to your Neblio Testnet address. By default amount is 1500000000 or 15 NEBL and has a max of 50 NEBL. Only 2 withdrawals allowed per 24 hour period.\n" provider: nebl method: GET path: "/testnet/faucet" encoding: json input: { type: "object" properties: { address: { type: "string" } amount: { type: "number" } } required: ["address"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { txId: { type: "string" description: "TXID of a successful withdrawal" } } } status: { type: "string" description: "Whether the withdrawal was successful" } } } }