# Fetch NFT

**Introduction**

Fetching NFTs is a common task when working with NFT collections. The Certhis SDK simplifies this process, allowing you to retrieve NFTs seamlessly from your collections. In this guide, we'll explore how to fetch NFTs using the Certhis SDK.

Get Single NFT Object by nft\_id , collection\_address and chain\_id

```java
await Certhis.nft.one(nft_id, collection_address, chain_id);
```

Get List of NFT Object

```javascript
await Certhis.nft.many(params);

```

For more details and advanced usage, refer to the [Certhis SDK GitHub repository](https://github.com/certhis/Certhis-SDK).
