> For the complete documentation index, see [llms.txt](https://docs.novabloq.com/web3-metamask/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.novabloq.com/web3-metamask/elements-details/web3-and-metamask/get-nft-metadata.md).

# Get NFT Metadata

## Demo:

<https://web3-demo.bubbleapps.io/version-test/get_nft_metadata>\
\
Metadata result is in a stringified JSON format.\
You can then easily extract any data from it using Regex using Bubble's integrated feature "*Extract with Regex*"\
\
For example, say you want to extract the NFT name from metadata, here's a simple example:\
\
`(?:"Name":")(.*?)(?:")`\
\
The result here will look something like this:\
\
"Name":"NFT Name"\
\
In the same field you can split these by two dots separator ":" which will make a list where the last item is the NFT name.\
\
It is actually simpler than it sounds, just check the demo editor example in the Popup Metadata.\
\
In any case, you can always write a better regex that will extract only the data you need.
