action nebl_get_address_total_received { label: "Returns total received by address in sats" description: "Returns total NEBL received by address in satoshis" provider: nebl method: GET path: "/ins/addr/{address}/totalReceived" encoding: json input: { type: "object" properties: { address: { type: "string" } } required: ["address"] additionalProperties: false } output: { type: "number" description: "Address total received in satoshis" } }