> For the complete documentation index, see [llms.txt](https://docs.expand.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.expand.network/integrations/stablecoins/evm.md).

# EVM

### /getprice

Get the Price of a Stablecoin.

<mark style="color:blue;">`GET`</mark> `https://api.expand.network/stablecoin/getprice`

#### Query Parameters

| Name                                    | Type   | Description                                                             |
| --------------------------------------- | ------ | ----------------------------------------------------------------------- |
| asset<mark style="color:red;">\*</mark> | String | Name of the StableCoin.                                                 |
| stablecoinId                            | String | Refer to the [Stablecoin IDs](/ids/stablecoin-ids.md) page for details. |

{% tabs %}
{% tab title="Sample Request" %}

```url
https://api.expand.network/stablecoin/getprice?asset=USDC
```

{% endtab %}

{% tab title="Sample Response" %}

```json
{
    "status": 200,
    "msg": "success",
    "data": {
        "roundId": "36893488147419104052",
        "answer": "0.99999",
        "startedAt": "1675316735",
        "updatedAt": "1675316735",
        "answeredInRound": "36893488147419104052"
    }
}
```

{% endtab %}
{% endtabs %}
