Skip to content

List Relay Transactions for an Address

GET /transactions

Server: https://api.openfish.fun

Authentication: None required


ParameterTypeRequiredDefaultDescription
addressstringYesEthereum address
limitintegerNo50Max results (1-500)
offsetintegerNo0Pagination offset

The body holds an array of RelayTransaction objects.

FieldTypeRequiredDescription
idstringYesTransaction UUID
ownerstringYesSubmitter’s address
txTypestringYesTransaction type
statusstringYes"PENDING", "SUBMITTED", "CONFIRMED", "FAILED"
txHashstringYesOn-chain transaction hash
nonceintegerYesMeta-transaction nonce
dataobjectYesTransaction payload
createdAtstringYesISO 8601 timestamp

Sample Response:

[
{
"id": "0190b317-a1d3-7bec-9b91-eeb6dcd3a620",
"owner": "0x6e0c80c90ea6c15917308F820Eac91Ce2724B5b5",
"txType": "APPROVE",
"status": "CONFIRMED",
"txHash": "0xabc123...",
"nonce": 61,
"data": {},
"createdAt": "2026-04-09T12:00:00Z"
}
]
{ "error": "Internal server error" }