# CheckID Availability

### Check ID Availability

#### Path

* `GET /:ticker/checkid`

#### Description

* Determines if a specific ID is available for minting under the given ticker.

#### Parameters

* `ticker`: The ticker symbol of the token (path parameter).
* `id`: The ID to check for availability (query parameter).

#### Request Example

```http
GET /NUVOGENESIS/checkid?id=2000000
```

#### Response Example

```json
{
  "isAvailable": true
}
```

#### Error Responses

* `400 Bad Request`: If the ID is invalid or not provided.
* `404 Not Found`: If the specified ticker does not exist.
* `500 Internal Server Error`: For server-related issues.
