> For the complete documentation index, see [llms.txt](https://docs.nftbank.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.nftbank.ai/nft-valuation-api-1/nft-price-valuation/estimates-asset_contract-token_id.md).

# /estimates/:asset\_contract/:token\_id

## Get estimates

<mark style="color:blue;">`GET`</mark> `https://api.nftbank.ai/estimates-v2/estimates/:asset_contract/:token_id`

#### Path Parameters

| Name                                              | Type   | Description            |
| ------------------------------------------------- | ------ | ---------------------- |
| asset\_contract<mark style="color:red;">\*</mark> | string | Asset contract address |
| token\_id<mark style="color:red;">\*</mark>       | string | Token ID               |

#### Query Parameters

| Name      | Type   | Description                                                   |
| --------- | ------ | ------------------------------------------------------------- |
| chain\_id | string | Chain ID ("ETHEREUM," "MATIC", "KLAYTN", default: "ETHEREUM") |

#### Headers

| Name                                        | Type   | Description                                  |
| ------------------------------------------- | ------ | -------------------------------------------- |
| x-api-key<mark style="color:red;">\*</mark> | string | API key request via \[API key request] link. |

{% tabs %}
{% tab title="200 " %}

```
{'data': [{'_id': 'ethereum-0x50f5474724e0ee42d9a4e711ccfb275809fd6d4a_110828-20210805',
   'asset_contract': '0x50f5474724e0ee42d9a4e711ccfb275809fd6d4a',
   'asset_info': {'contract_address': '0x50f5474724e0ee42d9a4e711ccfb275809fd6d4a',
    'name': 'Lands',
    'symbol': 'LAND'},
   'chain_id': 'ETHEREUM',
   'dapp_info': {'id': 'sandbox',
    'image_url': 'https://lh3.googleusercontent.com/SXH8tW1siikB80rwCRnjm1a5xM_MwTg9Xl9Db6mioIk9HIlDM09pVoSR7GKJgS6ulSUpgW9BDtMk_ePX_NKgO9A=s60',
    'name': 'The Sandbox'},
   'estimate': [{'currency_symbol': 'USD',
     'estimate_price': 1489.835075551001},
    {'currency_symbol': 'SAND', 'estimate_price': 2283.835248331322},
    {'currency_symbol': 'ETH', 'estimate_price': 0.5466964930456125}],
   'estimated_at': 'Thu, 05 Aug 2021 00:00:00 GMT',
   'item_id': '0x50f5474724e0ee42d9a4e711ccfb275809fd6d4a_110828',
   'token_id': '110828',
   'traits': {'location_x': 56, 'location_y': 67, 'type': None}}],
 'response': 200}
```

{% endtab %}
{% endtabs %}

<mark style="color:blue;">**curl request example**</mark>

```shell
curl -i -H "x-api-key: YOUR_API_KEY" \
  "https://api.nftbank.ai/estimates-v2/estimates/0xc2c747e0f7004f9e8817db2ca4997657a7746928/1022?chain_id=ETHEREUM"
```

<mark style="color:blue;">**curl response example**</mark>

```json
{
    "data": [
        {
            "_id": "ethereum-0xc2c747e0f7004f9e8817db2ca4997657a7746928_1022-20220413",
            "asset_contract": "0xc2c747e0f7004f9e8817db2ca4997657a7746928",
            "asset_info": {
                "contract_address": "0xc2c747e0f7004f9e8817db2ca4997657a7746928",
                "name": "Hashmasks",
                "symbol": "HM"
            },
            "chain_id": "ETHEREUM",
            "dapp_info": {
                "id": "hashmask",
                "image_url": "https://lh3.googleusercontent.com/Mq5O0Kv1gQBxtliiFA9PtgErM2C8zze8kAVD6xN4hlIN21SQXAn7_U3Dh6x3mmBigNOxQLxfujRDPyNzv-akgf2KMUuYOMHH-bnGG8E=s120",
                "name": "Hashmask"
            },
            "estimate": [
                {
                    "currency_symbol": "USD",
                    "estimate_price": 1358.7957577368409
                },
                {
                    "currency_symbol": "ETH",
                    "estimate_price": 0.44723571321294725
                }
            ],
            "estimated_at": "Wed, 13 Apr 2022 00:00:00 GMT",
            "item_id": "0xc2c747e0f7004f9e8817db2ca4997657a7746928_1022",
            "token_id": "1022",
            "traits": {
                "location_x": null,
                "location_y": null,
                "type": null
            }
        }
    ],
    "response": 200
}
```
