All I can see in the documentation is Datetime.now() but it returns the Timespan, I need just the date.
Datetime.now()
Create a new date from now with only the parts you need:
now
DateTime now = new DateTime.now(); DateTime date = new DateTime(now.year, now.month, now.day);