Ticker Availability

🚧 Coming Soon - This endpoint is not yet live.

🔑 Authentication required. See API Key for setup and rate limits.

GET /services/v2/ticker-availability

Check whether a ticker symbol is available for use before creating a coin.

GET https://api.anoncoin.it/services/v2/ticker-availability

Query Parameters

Parameter
Type
Required
Description

tickerSymbol

string

The ticker symbol to check (e.g., THANOS)


Example Request

curl --location 'https://api.anoncoin.it/services/v2/ticker-availability?tickerSymbol=THANOS' \
  --header 'x-api-key: YOUR_API_KEY'

Response (Available)

{
    "status": true,
    "message": "Ticker is available",
    "data": null,
    "requestId": "88994de0-f310-11f0-9f26-1b1f1981f29e"
}

Response (Not Available)

Last updated

Was this helpful?