ogic.fred.client.fred-client-webstart-application.1.0.6-RELEASE.source-code.GetReleasesExample.groovy Maven / Gradle / Ivy
/* This example, which is written in Groovy script, sends a request to the
* following URI:
*
* https://api.stlouisfed.org/fred/series/release
*
* Note that the api key has been set for you.
*/
import com.coherentlogic.fred.client.core.domain.Releases
import static com.coherentlogic.coherent.data.model.core.util.Utils.using
return queryBuilder
.series ()
.release ()
.setSeriesId("IRA")
.setRealtimeStart(
using (2001, Calendar.JANUARY, 20)
).setRealtimeEnd(
using (2004, Calendar.MAY, 17)
).doGet(Releases.class)