Xerial
  • Intro
    • ⚡Introduction
    • 🏁Getting Started
    • â„šī¸Before We Start: Important
  • 👷Build
    • Build Your Account
    • Create Your Assets
    • Inventory
    • Marketplace
    • User Flow
    • Best Practices
      • Attribute Guide
        • Attribute Use Cases
  • â˜„ī¸Xerial APIs
    • đŸ—ī¸API Authorization
    • 🛅Wallet API
      • Getting Started
      • Custodial Wallets
        • Create User
        • Create Wallet
        • Get Wallets
      • Wallet Management
        • Get Chain Native Currency Balance
        • Get Supported ERC20 Tokens Balances
        • Get Project Inventory
      • Transaction Proccessing
        • Transfer Xerial NFT
        • Transfer Chain Native Currency
        • Transfer ERC20 Token
        • Primary Purchase Xerial NFT
        • Secondary Purchase
        • List Xerial NFT
        • Delist Xerial NFT
        • Execute Custom Transaction
      • Errors Handling
        • Authentication Errors
        • Wallet Management Errors
        • Transaction Proccessing Errors
    • 🛒Marketplace API
      • Get Listed NFTs
      • Get Community Listed Items
      • Get Collections
      • Get Project Data
    • đŸ–ŧī¸NFT API
      • NFT Drop
    • 🌐Xerial Global Wallets
      • Get User Wallet Info
      • Get Global Inventory
      • User Authorization
      • Logout
  • đŸ› ī¸Xerial SDK
    • Wallet SDK
  • đŸŽī¸Gaming Toolkit
    • đŸ•šī¸Xerial Unity SDK Guide
      • âŦ‡ī¸Installation
      • âš™ī¸Configuration
      • Xerial Services
        • Set Up Xerial Services
        • Service Managers
          • Session Manager
          • Wallet Manager
            • UserData Class
              • Account Class
              • Wallet Class
              • Creating UserData Class
          • Inventory Manager
            • NFTs
              • Metadata
              • Attributes
            • NFTInventory Class
            • Creating NFT Inventory
          • MarketPlace Manager
    • Unreal Engine SDKs
Powered by GitBook
On this page
  • Overview
  • Responses
  • Usage
  1. Xerial APIs
  2. Marketplace API

Get Project Data

The "Get Project Data" endpoint allows you to recover the internal information associated with the game studio project.

Overview

Endpoint

  • Method: GET

  • URL: /marketplace/{projectDomain}

Responses

Success (Code 200)

{
        "address": "0x7d78B5a8b04151E0741875c2d6e3Cb6A82098Ac5",
        "network": "polygon",
        "name": "ProyectM",
        "description": "Desc",
        "category": "MMORPG",
        "tokenName": "",
        "tokenLogo": "",
        "logo": "https://your_project_image.jpg",
        "trailer": "http://www.google.com",
        "downloadLink": "http://www.google.com",
        "userBanner": "https://your_banner.jpg",
        "domain": "your.domain.example",
        "symbol": "NEZ",
        "socialMedias": {
            "_id": "658c2ae20c24dd5e00161a1a"
        },
        "id": "6564b4f3fa203b9Klsa2Ju7d0"
        }
}
  • Media Type: application/json

  • Example Value: An object containing the response for the project data.

Usage

  1. Send a GET request to the /marketplace/{projectDomain} endpoint to get the project information data.

  2. Handle the response accordingly based on success, unauthorized access, forbidden access, not found, method not allowed, precondition failed, or internal server error.

Note: Ensure to get the project domain from your xerial marketplace website.

PreviousGet CollectionsNextNFT API

Last updated 1 year ago

â˜„ī¸
🛒