GET
/
api
/
minting
/
assets
curl --request GET \
  --url https://admin.snagsolutions.io/api/minting/assets \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "id": "00000000-0000-0000-0000-000000000000"
    }
  ],
  "hasNextPage": true
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

websiteId
string
required

Website ID

Example:

"00000000-0000-0000-0000-000000000000"

organizationId
string
required

Organization ID

Example:

"00000000-0000-0000-0000-000000000000"

mintingContractAssetId
string | null

Minting Contract Asset ID

Example:

"00000000-0000-0000-0000-000000000000"

mintingContractIds
string | null

Minting Contract IDs

Example:

"00000000-0000-0000-0000-000000000000"

tokenId

Token ID

Example:

"0"

network
enum<string>

Network

Available options:
mainnet,
polygon,
polygon_mumbai,
optimism,
arbitrum,
binance,
bscTestnet,
avalanche,
avalancheFuji,
zksync,
fantom,
fantomTestnet,
base,
baseSepolia,
skaleNebula,
xai,
berachainArtio,
solana,
apechain,
flowMainnet,
campTestnet,
sui,
vanar,
sepolia,
optimism_sepolia,
arbitrumSepolia,
goerli,
optimism_goerli,
arbitrumGoerli,
basecamp
Example:

"ethereum"

contractAddress
string

Contract Address

Example:

"0x1234567890123456789012345678901234567890"

includeMetadata
boolean | null

Whether to include metadata in the response

Example:

true

includeDeleted
boolean | null
default:false

Whether to include deleted assets in the response

Example:

false

walletAddress

Wallet Address

Example:

"0x1234567890123456789012345678901234567890"

status
enum<string> | null

Status

Available options:
active,
past
Example:

"active"

currencyType
enum<string> | null

Currency Type

Available options:
loyalty,
native
Example:

"loyalty"

sortKey
enum<string> | null

Sort Key

Available options:
price,
startsAt,
assetNr
Example:

"price"

sortDir
enum<string> | null

Sort Dir

Available options:
asc,
desc
Example:

"asc"

isListed
boolean | null

Whether to include listed assets in the response

Example:

true

Response

200
application/json
200

Schema for getting minting assets response

data
object[]
required

Array of minting assets

hasNextPage
boolean
required

Indicates if more pages are available

Example:

true