# Get Mint Amount

### Get Mint Amount

#### Path

* `GET /mint-amount/:ticker/:txhash`

#### Description

* Retrieves the amount of a token minted in a specific transaction for the given ticker.

#### Parameters

* `ticker`: The ticker symbol of the token (path parameter).
* `txhash`: The hash of the minting transaction (path parameter).

#### Request Example

```http
GET /mint-amount/ETH/0x987xyz...
```

#### Response Example

```json
{
  "amount": 200
}
```

#### Error Responses

* `404 Not Found`: If the ticker or transaction hash does not exist.
* `500 Internal Server Error`: For server-related issues.
