get_messages
Retrieve encrypted messages from a conversation with a specific wallet address on the XMTP decentralized messaging network, limiting results as needed.
Instructions
Get messages from a conversation with an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Wallet address to get conversation with | |
limit | No | Maximum number of messages to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Wallet address to get conversation with",
"type": "string"
},
"limit": {
"default": 50,
"description": "Maximum number of messages to retrieve",
"type": "number"
}
},
"required": [
"address"
],
"type": "object"
}