---
title: "Export Transactions"
method: GET
path: "/api/v1/transactions/export"
tags: ["Transactions"]
---

# Export Transactions

`GET /api/v1/transactions/export`

Start the export process for filtered transactions using cursor pagination.

## Query parameters

- `limit` integer — The amount of transactions to export, unlimited if not set.
- `created_before` string, date-time
- `created_after` string, date-time
- `modified_after` string, date-time
- `vault_ids` string[] — The filter applies both to transactions that have been signed by the vault and also to transactions that have interacted with the vault.
- `chains` string[]
- `initiator_ids` string[]
- `types` TransactionType[]
- `sub_types` TransactionSubType[]
- `signer_types` SignerType[]
- `user_types` UserType[]
- `transaction_ids` string[]
- `end_user_ids` string[]
- `asset_ids` string[]
- `direction` 'outgoing' | 'incoming'
- `transaction_hashes` string[] — Transaction hashes to filter by. Will return transactions with any of the specified hashes. The format of the hash depends on the blockchain type.
- `search` string — String to search transactions by ID or hash.
- `frozen` boolean — Filter for frozen transactions or transactions that were unfrozen.
- `claimed` boolean — Filter for transactions waiting for the receiver to claim or accept. `true` selects settled transfers (Stellar claimable balances that were claimed, Ripple checks that were cashed, Canton transfers that were accepted). `false` selects ones not yet settled — still pending receiver action, or (Canton) already expired.

## Response `200`

Successful Response

- Export
  - `id` string, uuid, required — ID of the export.
  - `creation_time` string, date-time, required — The date and time when the object was created.
  - `type` 'csv' | 'zip', required
  - `state` 'created' | 'in_progress' | 'aborted' | 'ready' | 'error', required
  - `organization_id` string, uuid, required — The id of the organization.
  - `user_id` string, required — The id of the user.
  - `resource_type` 'transaction' | 'backup_snapshot' | 'vault', required
  - `successful_items_count` integer, required — The number of items that were successfully exported.
  - `failed_items_count` integer, required — The number of items that failed to be exported.
  - `total_items_count` integer, required — The total number of items to be exported.
  - `request_id` string, required — The request id of the export.
  - `download_url` string, required — The download url of the export.
  - `expiration_time` string, date-time, required — The date and time when the object will expire.

## Other responses

- `204` — No Content
- `400` — Bad Request
- `401` — Unauthorized User
- `403` — Forbidden User
- `408` — Request Timeout
- `422` — Validation Error
- `429` — Rate Limit Exceeded
- `500` — Unexpected Error

---

[API](https://skmtc.net/fordefi/apis/fordefi-api.md) · [All operations](https://skmtc.net/fordefi/apis/fordefi-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fordefi/fordefi-api/versions/c4c28d233105/schema)
