---
title: "List account transactions"
method: GET
path: "/account/{id}/transactions"
tags: ["account"]
---

# List account transactions

`GET /account/{id}/transactions`

## Path parameters

- `id` string, uuid, required

## Query parameters

- `origin_account` string
- `destination_account` string

## Response `200`

Success listed transactions

- object
  - `count` integer — The number of payout listed
  - `next` string, uri — The next page of listed payout
  - `previous` string, uri — The previous page of listed payout
  - `results` Transaction[] — The list of transactions
    - `id` string, uuid
    - `amount` number, double — String encoded decimal number
    - `timestamp` string, date-time
    - `detail` string
    - `type` string
    - `reference` string
    - `state` string
    - `origin` object
      - `account_details` object
        - `format` string
        - `number` string
      - `tax_information` object
        - `type` string
        - `tax_id` string
      - `beneficiary_name` string, nullable
    - `destination` object
      - `account_details` object
        - `format` string
        - `number` string
      - `tax_information` object
        - `type` string
        - `tax_id` string
      - `beneficiary_name` string, nullable

## Other responses

- `401` — Unauthorized access due to missing or invalid API key
- `403` — Permission denied for the requested action.
- `404` — The requested resource does not exist.
- `405` — The HTTP method used is not allowed for this endpoint.
- `406` — The Accept header cannot be satisfied.
- `415` — The request's content type is not supported.
- `429` — Too many requests, the request has been throttled.
- `500` — A generic internal API error occurred.

---

[API](https://skmtc.net/prometeoapi/apis/account-validation-v2.md) · [All operations](https://skmtc.net/prometeoapi/apis/account-validation-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/prometeoapi/account-validation-v2/revisions/9c278fe91cbd/schema)
