Protokol
  • Introduction To Digital Assets
  • Tutorials
    • How To Create Digital Assets
    • How To Trade Digital Assets
  • ARK CORE MODULES
    • NFT
      • Development
      • Complementary Examples
        • Base
        • Exchange
      • API Endpoints
        • Assets
        • Burns
        • Collections
        • Transfers
        • Base Configurations
        • Auctions
        • Bids
        • Trades
        • Exchange Configurations
    • Guardian
      • Development
      • Complementary Examples
      • API Endpoints
        • Configurations
        • Groups
        • Users
    • Nameservice
      • Development
      • Complementary Examples
      • API Endpoints
        • Configurations
        • Nameservice
    • Voting
      • Development
      • Complementary Examples
      • API Endpoints
        • Configurations
        • Create Proposal
        • Cast Vote
        • Statistics
  • Protokol Templates
    • Core Starter Kit
    • Solidity Typescript Hardhat
    • Nestjs
Powered by GitBook
On this page
  • Configurations
  • /configurations
  • Examples

Was this helpful?

  1. ARK CORE MODULES
  2. NFT
  3. API Endpoints

Exchange Configurations

List of NFT Exchange Configurations Endpoints

Configurations

/configurations

GET https://explorer.protokol.sh/api/nft/exchange/configurations

Returns Exchange Plugins configuration settings

{
  "data": {
    "package": {
      "name": "@protokol/nft-exchange-api",
      "currentVersion": "1.0.1",
      "latestVersion": "1.0.1"
    },
    "crypto": {
      "defaults": {
        "nftExchangeTypeGroup": 9001,
        "nftAuction": {
          "minItems": 1,
          "maxItems": 10
        }
      }
    },
    "transactions": {
      "defaults": {
        "feeType": 0
      }
    }
  }
}

Examples

curl https://explorer.protokol.sh/api/nft/exchange/configurations
const response = connection.NFTExchangeApi("configurations").index();

>>> Promise<ApiResponse<ConfigurationsResource>>
PreviousTradesNextGuardian

Last updated 3 years ago

Was this helpful?