> For the complete documentation index, see [llms.txt](https://docs.wemix.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wemix.com/ko/tutorial/erc-721-token/erc-721-token-api.md).

# ERC-721 Token API 조회하기

Postman을 이용하여 생성된 ERC-721 토큰을 확인하는 것이 가능합니다.

아래의 순서로 ERC-721 API에서 Contract Address에 대한 Inventory를 확인하는 과정을 진행해 보도록 하겠습니다.

* Step 1 : Postman에 접속하기
* Step 2 : API 실행하고 결과 확인하기

{% hint style="info" %}
아래 예제는 WEMIX3.0 테스트넷을 기반으로 작성되었습니다.
{% endhint %}

### Step 1 : Postman에 접속하기

<https://www.postman.com/> 로 접속하여 Postman을 설치한 후 접속합니다.\
접속 후, 'Workspaces'로 이동해주세요.

'Import' 버튼을 선택하여 `WEMIX3.0 API.json` 파일을 넣어 WEMIX3.0 API를 실행합니다.

<figure><img src="/files/HkcfyfPzDsjgAJYSaPPC" alt=""><figcaption><p>Postman My Workspace</p></figcaption></figure>

<figure><img src="/files/rrPgPUGRNAyJCJrJ5lWl" alt=""><figcaption><p>Postman WEMIX3.0 API 실행</p></figcaption></figure>

### Step 2 : API 실행하고 결과 확인하기

WEMIX3.0 ERC-721 API를 선택하여 사용자가 원하는 ERC-721 토큰을 조회할 수 있습니다.

#### Contract Address에 **대한 Inventory 확인하기**

{% tabs %}
{% tab title="메인넷" %}
<https://explorerapi.wemix.com/v1/tokens/{contract\\_address}/inventory>
{% endtab %}

{% tab title="테스트넷" %}
<https://explorerapi.test.wemix.com/v1/tokens/{contract\\_address}/inventory>
{% endtab %}
{% endtabs %}

'Get' 옆에 있는 입력박스에 위 URI를 입력합니다.

URI에서 {contract\_address} 부분에 사용자가 원하는 컨트랙트 주소를 입력해주면 됩니다.

아래 그림은 테스트넷 ERC-721 토큰을 확인하는 예입니다.

```
https://explorerapi.test.wemix.com/v1/tokens/0x3DDeE3714160A49573285473f40452cec67114B4/inventory
```

<figure><img src="/files/eBFUhY51qqdnF1HGuh4F" alt=""><figcaption><p>Contract에 대한 Inventory 확인 API 실행</p></figcaption></figure>

'Send' 를 선택하면  [테스트넷 익스플로러](https://explorer.test.wemix.com/)에서 확인되는 data와 동일하게 출력됨을 확인할 수 있습니다.

<figure><img src="/files/1LRvtypVyb3Hg3tKX6YJ" alt=""><figcaption><p>Contract에 대한 Inventory 확인</p></figcaption></figure>

<figure><img src="/files/IpE9WfSsCkf5iZpweAcn" alt=""><figcaption><p>WEMIX3.0 Testnet Explorer Token Inventory</p></figcaption></figure>
