Return details with list of flavors.
diff --git a/flavors.go b/flavors.go
index 5062389..33c66d4 100644
--- a/flavors.go
+++ b/flavors.go
@@ -9,7 +9,7 @@
 	var fs []Flavor
 
 	err := gsp.context.WithReauth(gsp.access, func() error {
-		url := gsp.endpoint + "/flavors"
+		url := gsp.endpoint + "/flavors/detail"
 		 return perigee.Get(url, perigee.Options{
 			CustomClient: gsp.context.httpClient,
 			Results:      &struct{ Flavors *[]Flavor }{&fs},