mallow docs

Events by mint account

POST
/v1/events/byMint

Get marketplace events (sales, bids, listings, etc.) for a specific artwork by mint account.

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/byMint" \  -H "Content-Type: application/json" \  -d '{    "page": 0,    "mintAccount": "string",    "mode": "current-listing"  }'
{  "result": [    {      "id": "string",      "eventType": "string",      "mintAccount": "string",      "createdAt": "string"    }  ]}