---
title: "Get Full Transactions For Address"
method: GET
path: "/addresses/{kaspaAddress}/full-transactions"
tags: ["Kaspa addresses"]
---

# Get Full Transactions For Address

`GET /addresses/{kaspaAddress}/full-transactions`

Get all transactions for a given address from database.
And then get their related full transaction data

## Path parameters

- `kaspaAddress` string, required — Kaspa address as string e.g. kaspa:qqkqkzjvr7zwxxmjxjkmxxdwju9kjs6e9u82uh59z07vgaks6gg62v8707g73

## Query parameters

- `limit` integer — The number of records to get
- `offset` integer — The offset from which to get records
- `fields` string
- `resolve_previous_outpoints` 'no' | 'light' | 'full' — An enumeration.

## Response `200`

Successful Response

- TxModel[]
  - `subnetwork_id` string
  - `transaction_id` string
  - `hash` string
  - `mass` string
  - `payload` string
  - `block_hash` string[]
  - `block_time` integer
  - `version` integer
  - `is_accepted` boolean
  - `accepting_block_hash` string
  - `accepting_block_blue_score` integer
  - `accepting_block_time` integer
  - `inputs` TxInput[]
    - `transaction_id` string, required
    - `index` integer, required
    - `previous_outpoint_hash` string, required
    - `previous_outpoint_index` string, required
    - `previous_outpoint_resolved` TxOutput
      - `transaction_id` string, required
      - `index` integer, required
      - `amount` integer, required
      - `script_public_key` string
      - `script_public_key_address` string
      - `script_public_key_type` string
      - `covenant_authorizing_input` integer
      - `covenant_id` string
    - `previous_outpoint_address` string
    - `previous_outpoint_amount` integer
    - `signature_script` string
    - `sig_op_count` string
    - `compute_budget` integer
    - `covenant_id` string
  - `outputs` TxOutput[]
    - `transaction_id` string, required
    - `index` integer, required
    - `amount` integer, required
    - `script_public_key` string
    - `script_public_key_address` string
    - `script_public_key_type` string
    - `covenant_authorizing_input` integer
    - `covenant_id` string

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/kaspa/apis/kaspa-rest-api-server.md) · [All operations](https://skmtc.dev/kaspa/apis/kaspa-rest-api-server/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/kaspa/kaspa-rest-api-server/revisions/12089df981aa/schema)
