Get a Message by ID
This method returns the message that matches the entered ID.
Authorizations
Path parameters
message_idintegerRequired
The message's ID.
Responses
200
Message object
application/json
404
Message not found
application/json
get
GET /messages/{message_id} HTTP/1.1
Host:
X-Ledger-API-Key: YOUR_API_KEY
Accept: */*
{
"account_id": 1,
"address": "bc1q2kqvs8wx455lw2f69j5z34emypjup07fp0fcrp",
"created_by": 5,
"created_on": "2025-06-30T18:16:57.596Z",
"data": "Welcome to the web3",
"id": 1,
"last_request": 3,
"message_type": "EIP-191",
"notes": [
{
"content": "some information about this transaction",
"title": "a note title"
}
],
"signature": "0x",
"status": "PENDING_APPROVAL",
"type": "MESSAGE_SIGNATURE"
}
Last updated