---
title: "List of transactions"
method: GET
path: "/api/v1/transactions"
tags: ["Transactions"]
---

# List of transactions

`GET /api/v1/transactions`

Returns the list of transactions

## Query parameters

- `page` number
- `limit` number
- `createdAt` DateFilterDto
  - `isnull` boolean — Returns null values
  - `notnull` boolean — Returns not null values
  - `gt` string, date-time — Returns values greater than the given date
  - `gte` string, date-time — Returns values greater than or equal to the given date
  - `lt` string, date-time — Returns values less than the given date
  - `lte` string, date-time — Returns values less than or equal to the given date
- `ids` string
- `subscriptionId` string
- `paymentIntentId` string
- `type` string

## Response `200`

- object
  - `page` number, required — Page number. Starts from 1
  - `limit` number, required — Number of items per page
  - `count` number, required
  - `hasMore` boolean, required
  - `query` PaginationFilterDto
    - `page` number — Page number. Starts from 1
    - `limit` number — Number of items per page
    - `createdAt` DateFilterDto
      - `isnull` boolean — Returns null values
      - `notnull` boolean — Returns not null values
      - `gt` string, date-time — Returns values greater than the given date
      - `gte` string, date-time — Returns values greater than or equal to the given date
      - `lt` string, date-time — Returns values less than the given date
      - `lte` string, date-time — Returns values less than or equal to the given date
  - `data` object[], required
    - `type` 'incoming' | 'outgoing' | 'event' | 'transfer', required
    - `transactionRelayId` string — Transaction relay id
    - `transactionHash` string — Transaction hash
    - `nonce` number — Transaction nonce
    - `gasLimit` number — Transaction gas limit used in payment
    - `validUntil` string — Transaction valid until
    - `fromAddress` string, required — Transaction from address
    - `toAddress` string, required — Transaction to address
    - `currency` 'usdc' | 'usdt' | 'pyusd' | 'eurc' | 'brett' | 'dai' | 'btc' | 'eth' | 'matic' | 'bnb' | 'sol' | 'busd' | 'trx' | 'food' | 'bonk' | 'wif' | 'goat' | 'spx' | 'truf' | 'pengu' | 'usd' | 'inr', required
    - `createdAt` string, date-time — Transaction created at
    - `amount` integer — Transaction amount in 8 decimals
    - `amountRaw` string, required — Transaction amount raw received from alchemy
    - `assetId` string, required — Transaction asset id
    - `asset` CheckoutSessionAssetDto, required
      - `id` string, required
      - `name` string, required
      - `address` string, required
      - `chainId` number, required
      - `currency` 'usdc' | 'usdt' | 'pyusd' | 'eurc' | 'brett' | 'dai' | 'btc' | 'eth' | 'matic' | 'bnb' | 'sol' | 'busd' | 'trx' | 'food' | 'bonk' | 'wif' | 'goat' | 'spx' | 'truf' | 'pengu' | 'usd' | 'inr', required
      - `symbol` string, required
      - `decimals` number, required
      - `coingeckoId` string
      - `isPublic` boolean, required
      - `superToken` SuperTokenDto
        - `address` string, required — SuperToken's address
        - `decimals` number, required
        - `symbol` string, required — SuperToken's symbol
      - `chain` ChainSlimDto, required
        - `id` number, required — Chain id
        - `name` string, required — Chain name
        - `icon` string, required — Chain icon
        - `currency` 'usdc' | 'usdt' | 'pyusd' | 'eurc' | 'brett' | 'dai' | 'btc' | 'eth' | 'matic' | 'bnb' | 'sol' | 'busd' | 'trx' | 'food' | 'bonk' | 'wif' | 'goat' | 'spx' | 'truf' | 'pengu' | 'usd' | 'inr', required
        - `blockExplorerTransactionUrl` string, required — Chain block explorer transaction url
        - `blockExplorerName` string, required — Chain block explorer name
        - `type` 'evm' | 'solana' | 'tron' | 'stripe' | 'binance_pay', required
        - `isBeta` boolean, required — Is beta asset
    - `transactionUrl` string — Transaction url

## Other responses

- `500`

---

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