# Downloading from Scrapy Cloud

After you [run a job](../jobs/index.md#jobs) on [Scrapy Cloud](../../get-started.md#scrapy-cloud), you
can download your scraped data from Scrapy Cloud, be it [from the Zyte
dashboard](#sc-download-dash), [from a URL](#sc-download-url), or [from the API](../reference/http/items.md#api-items).

## Downloading from the Zyte dashboard

To download your job data from the [Zyte dashboard](https://app.zyte.com):

1. Open the details page of your job (`https://app.zyte.com/p/<job ID>`).
2. Open the **Items** tab (`https://app.zyte.com/p/<job ID>/items`).
3. On the right-hand side, select **Download › <format>**.

   **<format>** can be one of: [CSV](https://en.wikipedia.org/wiki/Comma-separated_values), [JSON](https://www.json.org/json-en.html), [JSON Lines](https://jsonlines.org/), [XML](https://en.wikipedia.org/wiki/XML).

![](scrapy-cloud/usage/items/download-dash.png)

## Download from a URL

Download links [from the Zyte dashboard](#sc-download-dash) are
transparent. Given a job ID and your Scrapy Cloud API key, you can build one
manually, for example to automate downloads.

For JSON, JSON Lines and XML, download URLs follow this pattern:

```none
https://storage.zyte.com/items/<job ID>?apikey=<Scrapy Cloud API key>&format=<format>
```

Where:

- **<job ID>** is the job ID, e.g. `00000/0/0`.
- **<Scrapy Cloud API key>** is your [Scrapy Cloud API key](https://app.zyte.com/o/settings/apikey).
- **<format>** is the output file format, one of: `json`, `jl`
  (JSON Lines), `xml`.

For CSV, the download URL is similar, but you:

- Must specify a comma-separated list of fields to export as well, in the
  `fields` query string parameter.
- Can use the `include_headers` query string parameter to indicate
  whether you want the file names in the first row (`1`) or not (`0`,
  default).

For example:

```none
https://storage.zyte.com/items/<job ID>?apikey=<Scrapy Cloud API key>&format=csv&fields=key,name,price,url&include_headers=1
```

## See also

- [Exporting scraped data](../../../web-scraping/guides/export/index.md#export)
