Get transactions for a wallet
GET
/api/wallets/{address}/transactions
const url = 'https://api.qeychain.xyz/api/wallets/example/transactions?page=1&limit=50';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.qeychain.xyz/api/wallets/example/transactions?page=1&limit=50'Returns paginated transaction history for a wallet address.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”address
required
Address
string
Query Parameters
Section titled “Query Parameters”page
Page
Page number
integer
Page number
limit
Limit
Items per page
integer
Items per page
owned_wallets
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
PaginatedTransactionsResponse
Paginated list of transactions.
object
transactions
required
Transactions
Array<object>
TransactionResponseTransaction information.
object
id
required
Id
Transaction ID (UUID)
string
hash
required
Hash
Transaction hash
string
operation_type
required
Operation Type
Type of operation
string
timestamp
required
Timestamp
Transaction timestamp
string format: date-time
chain
required
Chain
Blockchain network
string
transfers
Any of:
Array<object>
object
key
additional properties
any
null
total
required
Total
Total number of transactions
integer
page
required
Page
Current page number
integer
limit
required
Limit
Items per page
integer
has_more
required
Has More
Whether more pages exist
boolean
Examplegenerated
{ "transactions": [ { "id": "example", "hash": "example", "operation_type": "example", "timestamp": "2026-04-15T12:00:00Z", "chain": "example", "transfers": [ {} ], "fee": {}, "status": "example" } ], "total": 1, "page": 1, "limit": 1, "has_more": true}Bad Request
Not Found
Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}Internal Server Error
