You would think that there is something like wp_get_attachment_image_alt()
to get the alt text of an attachment, but there is not. So you have to use get_post_meta()
:
$alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true);
This will give you the alt text of the attachment.