Create Marketplace
An API Key is required to interact with Launchpad APIs. Please contact us to get an API Key and get started.
Use this endpoint to register a new Marketplace. Having a marketplace registered allows the marketplace to specify marketplace fees and launchpad fees for buying and selling ordinals. Marketplace fees are paid out when an ordinal is sold. Fees are transferred to the address specified in a trustless way as part of the purchase transaction. This endpoint can also be used to specify launchpad configuration to create a launchpad. marketplace fees and launchpad fees are separate
POST
Create a new marketplace
POST
Create a new marketplaceCreate Marketplace
POST
https://testnet-api.ordinalsbot.com/marketplace/create-marketplace
API Key is required in the header:
headers: { 'x-api-key': '<YOUR_API_KEY>', ...otherHeaders }
Example Request Body:
{
"name" : "Marketplace Name",
"sellerFee" : 500,
"buyerFee" : 500,
"btcFeePayoutAddress" : "3En...38L",
"url" : "https://www.marketplace.com",
"launchpadBuyerFee": 100,
"launchpadSellerFee": 500,
"launchpadBtcFeePayoutAddress": "2Mx...Erx"
"description" : "This is a test marketPlace"
}
Request Body
Last updated