# Get address deltas Get balance changes (deltas) for a specific address. Endpoint: GET /daemon/getaddressdeltas Version: 6.6.1 Security: ZelID ## Query parameters: - `address` (string, required) Flux address to query - `start` (integer) Starting block height - `end` (integer) Ending block height - `chaininfo` (boolean) Include chain information ## Response 200 fields (application/json): - `status` (string) Explanation of status Enum: "success", "error" - `data` (array) - `data.satoshis` (integer) Amount in satoshis - `data.txid` (string) Transaction ID - `data.index` (integer) Output index - `data.blockindex` (integer) Block index - `data.height` (integer) Block height ## Response 401 fields (application/json): - `status` (string) Enum: "error" - `data` (object) - `data.name` (string) Example: "UnauthorizedAccess" - `data.message` (string) Example: "Unauthorized. Invalid signature or insufficient privilege." - `data.code` (string) Example: "UNAUTHORIZED" ## Response 500 fields (application/json): - `status` (string) Enum: "error" - `data` (object) - `data.name` (string) Example: "InternalError" - `data.message` (string) Example: "Internal server error occurred" - `data.code` (string) Example: "INTERNAL_ERROR"