Update a Marketplace

Update details of an existing marketplace

An API Key is required to interact with MarketPlace APIs. Please contact us to get an API Key and get started.

Use this endpoint to update a previously created Marketplace.

POST Update a marketplace

Update Marketplace

POST https://api.ordinalsbot.com/marketplace/update-marketplace

API Key is required in the header:

headers: { 'x-api-key': '<YOUR_API_KEY>', ...otherHeaders } One or more of the values to be updated can be provided in the body. Example Request Body, this will update the launchpadBtcFeePayoutAddressand description: { "launchpadBtcFeePayoutAddress": "2Mx...Erx" "description": "This is a test marketPlace" }

Request Body

NameTypeDescription

sellerFee

Number

Fees to be charged to the seller when listing an ordinal for sale on the marketplace. Fees should be specified in basis points for example 10% would be 1000

buyerFee

Number

Fees that will be charged to the buyer when an ordinal is sold on the marketplace. Fees should be specified in basis points for example 10% would be 1000

btcFeePayoutAddress

String

The address for paying out marketplace fees

name

String

Name for the marketplace

url

String

URL for the marketplace

description

String

Short description for the marketplace

launchpadBuyerFee

Number

Fees that will be charged to the buyer when buying from launchpad. Fees should be specified in basis points for example 10% would be 1000

launchpadSellerFee

Number

Fees that will be charged to the seller when an inscription is listed on launchpad. Fees should be specified in basis points for example 10% would be 1000

launchpadBtcFeePayoutAddress

String

The address for paying out launchpad fees


{
    "marketPlaceId": "123abce79a817d55d0e7123", // your new marketplace id
    "apiKey": "366e7416-9e95-459f-bee9-fe8abbf4591b" // the api key you provided
}

Last updated