## Get dataset CSV stream `client.radar.datasets.get(stringalias, RequestOptionsoptions?): DatasetGetResponse` **get** `/radar/datasets/{alias}` Retrieves the CSV content of a given dataset by alias or ID. When getting the content by alias the latest dataset is returned, optionally filtered by the latest available at a given date. ### Parameters - `alias: string` Dataset alias or ID. ### Returns - `DatasetGetResponse = string` ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const dataset = await client.radar.datasets.get('ranking_top_1000'); console.log(dataset); ```