GET
/
addresses
/
{address}
/
txs
Transactions by Address
curl --request GET \
  --url https://xdg-mainnet.gomaestro-api.org/v0/addresses/{address}/txs \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "height": 5277680,
      "input": true,
      "output": true,
      "tx_hash": "1cd3a819876660e98d3d5d9e4d36ddbd1ae6f96e58de0d3977f0ef2ce6e4194a"
    },
    {
      "height": 5277682,
      "input": true,
      "output": true,
      "tx_hash": "ad7b8037fc7551fd9e644ddd39bc0501bc6aac865284fd79dde8b732af45acd9"
    }
  ],
  "last_updated": {
    "block_hash": "8ac9689a7901531013c3cd621eae8b8e75b1994f477d616a4faa2a10afd9be58",
    "block_height": 5277710
  },
  "next_cursor": "AAAAAABQh_JgAAlg2axFrzK36N15_YRShqxqvAEFvDndTWSe_VF1_DeAe60"
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

address
string
required

Dogecoin address or hex encoded script pubkey

Query Parameters

count
integer
default:100

The max number of results per page

Required range: x >= 0
order
enum<string>
default:asc

The order in which the results are sorted (by height at which transaction was included in a block)

Available options:
asc,
desc
from
integer | null

Return only transactions included on or after a specific height

Required range: x >= 0
to
integer | null

Return only transactions included on or before a specific height

Required range: x >= 0
cursor
string | null

Pagination cursor string, use the cursor included in a page of results to fetch the next page

Response

200
application/json

Requested data

The response is of type object.