---
title: "Get TokenTransfers"
method: GET
path: "/api/v2/accounts/{account_id}/token_transfers"
tags: ["Accounts"]
---

# Get TokenTransfers

`GET /api/v2/accounts/{account_id}/token_transfers`

Get `TokenTransfer`s made from this `Account`.

A `TokenTransfer` represents a transfer of tokens through the Dinari platform from one `Account` to another.
As such, only `Account`s that are connected to Dinari-managed `Wallet`s can initiate `TokenTransfer`s.

## Query parameters

- `limit` integer
- `order` 'asc' | 'desc'
- `next` string, nullable
- `previous` string, nullable

## Response `200`

OK

- PaginatedTokenTransferResponse
  - `_sv` 'PaginatedTokenTransferResponse:v1' — Version
  - `data` TokenTransfer[], required — List of TokenTransfer
    - `id` string, uuid, required — ID of the token transfer.
    - `sender_account_id` string, uuid, required — ID of the account from which the tokens are transferred.
    - `recipient_account_id` string, uuid, required — ID of the account to which the tokens are transferred.
    - `chain_id` 'eip155:1' | 'eip155:42161' | 'eip155:8453' | 'eip155:81457' | 'eip155:98866' | 'eip155:999' | 'eip155:43114' | 'eip155:11155111' | 'eip155:421614' | 'eip155:84532' | 'eip155:168587773' | 'eip155:98867' | 'eip155:998' | 'eip155:43113' | 'eip155:202110' | 'eip155:179205' | 'eip155:179202' | 'eip155:98865' | 'eip155:7887', required — CAIP-2 chain ID of the blockchain that the transfer is made on.
    - `token_address` string, eth_address, required — Address of the token being transferred.
    - `quantity` number, required — Quantity of the token being transferred.
    - `status` 'PENDING' | 'IN_PROGRESS' | 'COMPLETE' | 'FAILED', required — Status of the token transfer.
    - `created_dt` string, date-time, required — Datetime at which the transfer was created. ISO 8601 timestamp.
    - `updated_dt` string, date-time, required — Datetime at which the transfer was last updated. ISO 8601 timestamp.
    - `transaction_hash` string, hex_string, nullable — Transaction hash of the transfer on the blockchain, if applicable. This is only present if the transfer has been executed on-chain.
  - `pagination_metadata` BaseOpenApiPaginationMetadata, required
    - `previous` string — Cursor for previous page
    - `next` string — Cursor for next page

## Other responses

- `422` — Unprocessable Entity
- `default` — Default error response

---

[API](https://skmtc.net/dinaricrypto/apis/dinari-enterprise-api.md) · [All operations](https://skmtc.net/dinaricrypto/apis/dinari-enterprise-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dinaricrypto/dinari-enterprise-api/revisions/5403e9118588/schema)
