All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ogic.fred.client.fred-client-webstart-application.1.0.6-RELEASE.source-code.GetVintageDatesExample.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/vintagedates
 *
 * Note that the api key has been set for you.
 */

import com.coherentlogic.fred.client.core.domain.VintageDates
import com.coherentlogic.fred.client.core.domain.SortOrder
import static com.coherentlogic.coherent.data.model.core.util.Utils.using

return queryBuilder
    .series ()
    .vintageDates ()
    .setSeriesId("GNPCA")
    .setRealtimeStart(
        using (2001, Calendar.JANUARY, 20)
    ).setRealtimeEnd(
        using (2004, Calendar.MAY, 17)
    ).setLimit(100)
    .setOffset(1)
    .setSortOrder(SortOrder.desc)
    .doGet(VintageDates.class)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy