# Inscription Existence Verification (id)

### Inscription Existence Verification

#### Path

* `GET /:ticker/:id/exist`

#### Description

* Checks if a inscription with a given hash exists for a specific ticker.

#### Parameters

* `ticker`: The ticker symbol of the token (path parameter).
* `id`: The hash of the transaction that minted the inscription (path parameter).

#### Request Example

```http
GET /NUVOGENESIS/0x123abc.../exist
```

#### Response Example

```json
{
  "exists": true
}
```

#### Error Responses

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