GoDaddy DNS API
$domain = 'domain'  # your domain
$name = '@' #name of the A record to update
$key = '' #key for godaddy developer API
$secret = '' #Secret for godday developer API

$headers = @{}
$headers["Authorization"] = 'sso-key ' + $key + ':' + $secret
$result = Invoke-WebRequest https://api.godaddy.com/v1/domains/$domain/records/A/$name -method get -headers $headers
$content = ConvertFrom-Json $result.content
$dnsIp = $content.data

echo "Current DNS IP: $dnsIp"

# Get public ip address there are several websites that can do this.
$currentIp = Invoke-RestMethod http://ipinfo.io/json | Select-Object -ExpandProperty ip

echo "Current IP: $currentIp"

if ( $currentIp -ne $dnsIp) {
    $Request = @(@{ttl=3600;data=$currentIp; })
    $JSON = Convertto-Json $request
    Invoke-WebRequest https://api.godaddy.com/v1/domains/$domain/records/A/$name -method put -headers $headers -Body $json -ContentType "application/json"
    echo "Updated the IP"
} else {
    echo "The IP's are the same"
}

Read-Host -Prompt "Press Enter to exit"