---
title: "List export jobs"
method: GET
path: "/v3/exports"
tags: ["Exports"]
---

# List export jobs

`GET /v3/exports`

Lists your organization's export jobs, newest first.

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

The export jobs.

- ExportJob[]
  - `jobId` string, uuid
  - `createdAt` string, date-time
  - `connection` string — Name of the connection. Falls back to its identifier if the connection has since been deleted.
  - `source` string
  - `format` 'geoparquet' | 'geojson' | 'shapefile' | 'geopackage' | 'csv' | 'tab' | 'kml' | 'kmz'
  - `status` 'pending' | 'running' | 'success' | 'failure' | 'cancelled' — `success`, `failure` and `cancelled` are final states.
  - `error` string — Empty string when the job hasn't failed.
  - `result` object — Empty until the job succeeds.
    - `rowCount` integer — Rows exported. `-1` when the data warehouse doesn't report a count.
    - `format` string
    - `outputUrl` string — Where the file was written.
    - `downloadUrl` string — Signed URL to download the file. Only present when the export went to CARTO's storage — not when you passed `destUrl`.
    - `fileSize` integer — Size of the exported file in bytes.
    - `expirationDate` string, date-time — When `downloadUrl` stops working, 24 hours after minting.

## Other responses

- `401` — The token is missing, malformed or expired.
- `403` — The token doesn't grant access to this resource.
- `429` — You went over the [rate limit](#rate-limits) for this API.

---

[API](https://skmtc.net/gitbookio/apis/carto-api.md) · [All operations](https://skmtc.net/gitbookio/apis/carto-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gitbookio/carto-api/revisions/019f79ecdd6c/schema)
