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

GET /ETH/checkid?id=456

Response Example

{
  "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.

Last updated