# edd_get_variable_prices()

 This function will return an array of all of the variable prices set for the provided download ID.

```
$prices = edd_get_variable_prices( $download_id );
if( $prices ) {
	foreach( $prices as $price_id =&gt; $price ) {
		// $price[&#039;name&#039;] is the name of the price
		// $price[&#039;amount&#039;] is the amount of the price
	}
}&lt;br&gt;&lt;/br&gt;
```