POST
/
addresses
/
cred
/
transactions
Transactions by multiple payment credentials
curl --request POST \
  --url https://mainnet.gomaestro-api.org/v1/addresses/cred/transactions \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '[
  "addr_vkh1wdkle2sprqsuklt34474g6n4ps7k6pv6zwe4644uxmg7xj54y87",
  "addr_shared_vkh1ewj7sycvy5y234m3uhudn5dggqk3djr0jheacr3utna5gcnmwp2"
]'
{
  "data": [
    {
      "tx_hash": "6029360e8236d06d81a31e9d8c6748ada97817f227204be092c93ad04fd04e4c",
      "slot": 55718892
    },
    {
      "tx_hash": "21c895e07df0af0d4bfad175f823b047a61542352890ffdd23bd23d56f567d2d",
      "slot": 55718892
    },
    {
      "tx_hash": "257916e7ae112cf16f27218e41bfa37c018bab922354201b3b38c9a24c35ab33",
      "slot": 55718892
    },
    {
      "tx_hash": "c140d6590778da752bf9b33780efdb9dc6307aa0bfc107f95f503016b58aa218",
      "slot": 106047961
    }
  ],
  "last_updated": {
    "timestamp": "2023-10-18 07:30:52",
    "block_hash": "0e1e924710135acfe200ab13d290bd282a67584fd54456f0dcac0aeaa38bb2c2",
    "block_slot": 106047961
  },
  "next_cursor": null
}

Authorizations

api-key
string
header
required

Project API Key

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 point in chain)

Available options:
asc,
desc
from
integer | null

Return only transactions minted on or after a specific slot

Required range: x >= 0
to
integer | null

Return only transactions minted on or before a specific slot

Required range: x >= 0
cursor
string | null

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

Body

application/json · string[]

The body is of type string[].

Response

200
application/json

Transactions involving payment credentials

A paginated response. Pass in the next_cursor in a subsequent request as the cursor query parameter to fetch the next page of results.