Inscription Existence Verification (tx_hash)

Transaction Existence Verification

Path

  • GET /:ticker/:tx_hash/exist

Description

  • Verifies the existence of a specific minted inscription for a given ticker.

Parameters

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

  • tx_hash: The hash of the transaction that minted the inscription to verify (path parameter).

Request Example

GET /ETH/0x1234abcd.../exist

Response Example

{
  "exists": true
}

Error Responses

  • 404 Not Found: If the ticker or transaction hash does not exist.

  • 500 Internal Server Error: For server-related issues.

Last updated