# List All Minted Inscriptions

### List All Minted Inscriptions

#### Path

* `GET /mints/:ticker`

#### Description

* Retrieves all minted inscriptions (identified by transaction hash) for a specific ticker.

#### Parameters

* `ticker`: The ticker symbol of the token (path parameter).

#### Request Example

```http
GET /mints/ETH
```

#### Response Example

```json
jsonCopy code{
  "mints": [
    {
      "tx_hash": "0x789abc...",
      "amount": 50,
      // ... other mint details
    },
    // ... more minted inscriptions
  ]
}
```

#### Error Responses

* `404 Not Found`: If no minted inscriptions are found for the given ticker.
* `500 Internal Server Error`: For server-related issues.
