# getAsset()

**Method Signature**

```python
def getAsset(self, blockchain, name)
```

**Parameters**

| Name         | Type                  | Description                  |
| ------------ | --------------------- | ---------------------------- |
| `blockchain` | string or hexadecimal | Blockchain address           |
| `assetName`  | string                | The asset you're looking for |

**Example**

<pre class="language-python"><code class="lang-python"><strong>from circular_protocol_api import CircularProtocolAPI
</strong><strong>
</strong><strong>blockhain = 0x8a20baa40c45dc5055aeb26197c203e576ef389d9acb171bd62da11dc5ad72b2
</strong>
circular = CircularProtocolAPI()
result = circular.getAsset(blockchain, "CIRX")
</code></pre>

**Result**

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

```json
{
    "Result": 200,
    "Response": {
        "Address": "e2e86db8f44ceae4750a2a055b38cb3ae326bc1c282f09e7c0cc1f585984bdf2",
        "Amount": "1000000000000.000122",
        "Blockchain": "8a20baa40c45dc5055aeb26197c203e576ef389d9acb171bd62da11dc5ad72b2",
        "EnableSwap": 0,
        "Name": "CIRX",
        "Price": 1.0, //Corresponding value in CIRX
        "Royalties": 0.0,
        "Description": "Circular Coin",
        "Type": "CRC_TOKEN_0123",
        "URL": "",
        "URLType": "None"
    },
    "Node": "fc8fe5ee103dafe353c98ce90a1cb2956fd51a109512e074bd3d26a06d268e81"
}
```

{% endtab %}

{% tab title="118" %}
If the blockchain address is wrong or the asset doesn't exists.

```json
{
    "Result": 118,
    "Response": "Wrong Format",
    "Node": "7bb5bd50729d6857942701d5673ea70ca1625f883230d8543970a452d1abe1c4"
}
```

{% endtab %}
{% endtabs %}
