mallow docs

Events by seller

POST
/v1/events/bySeller

Get marketplace events (sales, bids, listings, etc.) for a specific seller by username or wallet address.

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/events/bySeller" \  -H "Content-Type: application/json" \  -d '{    "page": 0,    "usernameOrAddress": "string"  }'
{  "result": [    {      "id": "string",      "eventType": "string",      "mintAccount": "string",      "createdAt": "string"    }  ]}