Enjin Documentation
Search…
Enjin Documentation
Enjin Docs Navigation
Introduction
About Enjin
Common Blockchain & Enjin Platform Terms
About the Enjin Platform
What is the Enjin Platform?
What is Enjin Wallet, EnjinX & NFT.io?
What is the Enjin Wallet Daemon?
What is Enjin Beam?
What is GraphQL and how does it interact with the Enjin Platform API?
Getting Started with the Enjin Platform API
Creating your Enjin Platform Account
Project & Player Requests
Quick Start-up Guide to use Goërli
Creating your first Blockchain Token
Setting Metadata on your first Enjin Token
Minting your first Enjin Token
Advanced Enjin Platform API Usage
Enjin Platform API Requests
Managing Players
Linking a Player Wallet
Unlinking a Wallet
Viewing Player Tokens
Viewing Assets
Managing Assets
Advanced Metadata Guide
Enjin Wallet Deep Linking
API Glossary
EnjinX API
Errors and Statuses
Understanding Errors in the Enjin Platform API (Work In Progress)
Wallet Daemon
Enjin Wallet Daemon Overview
Enjin Platform SDKs
Introduction to Enjin Platform SDKs
RESOURCES
Enjin Changelog
Enjin Website
Efinity Whitepaper
Enjin Whitepaper
Enjin Products Status
Contact Support
GraphQL Playground
DOWNLOADS
C# SDK
C++ SDK
Java SDK
Enjin Wallet Daemon
EnjinCraft Plugin
Enjin Wallet App
Powered By
GitBook
Viewing Assets
Learn how to view assets from your project with the GetAssets query.
With the
GetAsset
query, you can get information regarding assets linked to your project/collection.
GetAsset
This query allows you to retrieve specific information from assets linked to your project.
query
{
GetAsset
(
id
:
"<token id here>"
)
{
id
name
createdAt
updatedAt
wallet
{
ethAddress
}
}
}
The expected output of this query should look like this.
{
"data"
:
{
"GetAsset"
:
{
"id"
:
"708000000000088e"
,
"name"
:
"Tassio Test 2"
,
"createdAt"
:
"2021-06-16T21:18:59+00:00"
,
"updatedAt"
:
"2021-06-16T21:39:39+00:00"
,
"wallet"
:
{
"ethAddress"
:
"0x7AEAB7C231c88611a2ad434d3A2715Ab3C91F406"
}
}
}
}
Previous
Viewing Player Tokens
Next - Advanced Enjin Platform API Usage
Managing Assets
Last modified
3mo ago
Export as PDF
Copy link