The WordPress Codex only covers circumstances when you need a category description from an ID or category_name.
Here’s a method for getting a category description based off a slug
<?php
echo category_description(get_category_by_slug('category-slug')->term_id);
?>
