OpenSea · Example Payload

Build_Drop_Mint_Transaction

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Build_Drop_Mint_Transaction is an example object payload from OpenSea, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathrequestresponse

Example Payload

Raw ↑
{
  "operationId": "build_drop_mint_transaction",
  "method": "POST",
  "path": "/api/v2/drops/{slug}/mint",
  "request": {
    "parameters": {
      "slug": "string"
    },
    "requestBody": {
      "minter": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
      "quantity": 1
    }
  },
  "response": {
    "200": {
      "to": "string",
      "data": "string",
      "value": "string",
      "chain": "string"
    }
  }
}