\NonFungibleTokensAPI

July 14, 2024 ยท View on GitHub

MethodHTTP requestDescription
GetNftHistoryGet /extended/v1/tokens/nft/historyNon-Fungible Token history
GetNftHoldingsGet /extended/v1/tokens/nft/holdingsNon-Fungible Token holdings
GetNftMintsGet /extended/v1/tokens/nft/mintsNon-Fungible Token mints

GetNftHistory

NonFungibleTokenHistoryEventList GetNftHistory(ctx).AssetIdentifier(assetIdentifier).Value(value).Limit(limit).Offset(offset).Unanchored(unanchored).TxMetadata(txMetadata).Execute()

Non-Fungible Token history

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/cbadawi/go-stacks"
)

func main() {
	assetIdentifier := "SP2X0TZ59D5SZ8ACQ6YMCHHNR2ZN51Z32E2CJ173.the-explorer-guild::The-Explorer-Guild" // string | token asset class identifier
	value := "0x0100000000000000000000000000000803" // string | hex representation of the token's unique value
	limit := int32(56) // int32 | max number of events to fetch (optional) (default to 50)
	offset := int32(42000) // int32 | index of first event to fetch (optional) (default to 0)
	unanchored := false // bool | whether or not to include events from unconfirmed transactions (optional) (default to false)
	txMetadata := true // bool | whether or not to include the complete transaction metadata instead of just `tx_id`. Enabling this option can affect performance and response times. (optional) (default to false)

	configuration :=config.NewConfiguration()
	apiClient := NewAPIClient(configuration)
	resp, r, err := apiClient.NonFungibleTokensAPI.GetNftHistory(context.Background()).AssetIdentifier(assetIdentifier).Value(value).Limit(limit).Offset(offset).Unanchored(unanchored).TxMetadata(txMetadata).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `NonFungibleTokensAPI.GetNftHistory``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetNftHistory`: NonFungibleTokenHistoryEventList
	fmt.Fprintf(os.Stdout, "Response from `NonFungibleTokensAPI.GetNftHistory`: %v\n", resp)
}

Path Parameters

Other Parameters

Other parameters are passed through a pointer to a apiGetNftHistoryRequest struct via the builder pattern

NameTypeDescriptionNotes
assetIdentifierstringtoken asset class identifier
valuestringhex representation of the token's unique value
limitint32max number of events to fetch[default to 50]
offsetint32index of first event to fetch[default to 0]
unanchoredboolwhether or not to include events from unconfirmed transactions[default to false]
txMetadataboolwhether or not to include the complete transaction metadata instead of just `tx_id`. Enabling this option can affect performance and response times.[default to false]

Return type

NonFungibleTokenHistoryEventList

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

GetNftHoldings

NonFungibleTokenHoldingsList GetNftHoldings(ctx).Principal(principal).AssetIdentifiers(assetIdentifiers).Limit(limit).Offset(offset).Unanchored(unanchored).TxMetadata(txMetadata).Execute()

Non-Fungible Token holdings

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/cbadawi/go-stacks"
)

func main() {
	principal := "SPNWZ5V2TPWGQGVDR6T7B6RQ4XMGZ4PXTEE0VQ0S.marketplace-v3" // string | token owner's STX address or Smart Contract ID
	assetIdentifiers := []string{"Inner_example"} // []string | identifiers of the token asset classes to filter for (optional)
	limit := int32(56) // int32 | max number of tokens to fetch (optional) (default to 50)
	offset := int32(42000) // int32 | index of first tokens to fetch (optional) (default to 0)
	unanchored := false // bool | whether or not to include tokens from unconfirmed transactions (optional) (default to false)
	txMetadata := true // bool | whether or not to include the complete transaction metadata instead of just `tx_id`. Enabling this option can affect performance and response times. (optional) (default to false)

	configuration :=config.NewConfiguration()
	apiClient := NewAPIClient(configuration)
	resp, r, err := apiClient.NonFungibleTokensAPI.GetNftHoldings(context.Background()).Principal(principal).AssetIdentifiers(assetIdentifiers).Limit(limit).Offset(offset).Unanchored(unanchored).TxMetadata(txMetadata).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `NonFungibleTokensAPI.GetNftHoldings``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetNftHoldings`: NonFungibleTokenHoldingsList
	fmt.Fprintf(os.Stdout, "Response from `NonFungibleTokensAPI.GetNftHoldings`: %v\n", resp)
}

Path Parameters

Other Parameters

Other parameters are passed through a pointer to a apiGetNftHoldingsRequest struct via the builder pattern

NameTypeDescriptionNotes
principalstringtoken owner's STX address or Smart Contract ID
assetIdentifiers[]stringidentifiers of the token asset classes to filter for
limitint32max number of tokens to fetch[default to 50]
offsetint32index of first tokens to fetch[default to 0]
unanchoredboolwhether or not to include tokens from unconfirmed transactions[default to false]
txMetadataboolwhether or not to include the complete transaction metadata instead of just `tx_id`. Enabling this option can affect performance and response times.[default to false]

Return type

NonFungibleTokenHoldingsList

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

GetNftMints

NonFungibleTokenMintList GetNftMints(ctx).AssetIdentifier(assetIdentifier).Limit(limit).Offset(offset).Unanchored(unanchored).TxMetadata(txMetadata).Execute()

Non-Fungible Token mints

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/cbadawi/go-stacks"
)

func main() {
	assetIdentifier := "SP2X0TZ59D5SZ8ACQ6YMCHHNR2ZN51Z32E2CJ173.the-explorer-guild::The-Explorer-Guild" // string | token asset class identifier
	limit := int32(56) // int32 | max number of events to fetch (optional) (default to 50)
	offset := int32(42000) // int32 | index of first event to fetch (optional) (default to 0)
	unanchored := false // bool | whether or not to include events from unconfirmed transactions (optional) (default to false)
	txMetadata := true // bool | whether or not to include the complete transaction metadata instead of just `tx_id`. Enabling this option can affect performance and response times. (optional) (default to false)

	configuration :=config.NewConfiguration()
	apiClient := NewAPIClient(configuration)
	resp, r, err := apiClient.NonFungibleTokensAPI.GetNftMints(context.Background()).AssetIdentifier(assetIdentifier).Limit(limit).Offset(offset).Unanchored(unanchored).TxMetadata(txMetadata).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `NonFungibleTokensAPI.GetNftMints``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetNftMints`: NonFungibleTokenMintList
	fmt.Fprintf(os.Stdout, "Response from `NonFungibleTokensAPI.GetNftMints`: %v\n", resp)
}

Path Parameters

Other Parameters

Other parameters are passed through a pointer to a apiGetNftMintsRequest struct via the builder pattern

NameTypeDescriptionNotes
assetIdentifierstringtoken asset class identifier
limitint32max number of events to fetch[default to 50]
offsetint32index of first event to fetch[default to 0]
unanchoredboolwhether or not to include events from unconfirmed transactions[default to false]
txMetadataboolwhether or not to include the complete transaction metadata instead of just `tx_id`. Enabling this option can affect performance and response times.[default to false]

Return type

NonFungibleTokenMintList

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]