Get Comments
This page documents the API endpoint for retrieving Moment comments on the In Process protocol.
Endpoint
GET https://inprocess.world/api/moment/commentsQuery Parameters
The following query parameters are required:
collectionAddress(string): Moment contract addresstokenId(string): Token IDchainId(number): Chain ID (optional, default: Base, 8453)offset(number): Pagination offset (optional, defaults to 0)
Example Requests
cURL
curl "https://inprocess.world/api/moment/comments?collectionAddress=0x297F21AAc502571db2c7dBFD271E68Dae7F2cE1E&tokenId=1&chainId=84532&offset=0"Example Response
{
"comments": [
{
"sender": "0x06a701Ae65582B92Af48cDff45a8B20DcA3714cA",
"comment": "in•process!!!",
"timestamp": 1761056680
}
]
}