v1

latestOpenAPI 3.0.12026-07-2699111970.1 KB
Headless

Check Supported Tokens

Get a token and its available features by its locator. This endpoint allows you to check if a specific token is supported by Crossmint and what features are available for it.

API scope required: orders.create

get/v1-alpha2/tokens/{tokenLocator}

Path parameters

tokenLocatorstring required

A unique identifier used to locate a specific fungible token on a blockchain. Memecoin checkout supports the Solana and Base networks. Format: <network>:<tokenAddress> (e.g. base:0xa4a2e2ca3fbfe21aed83471d28b6f65a233c6e00).

Response

The token has been successfully retrieved.

tokenstring required

The token locator that was queried

availableboolean required

Whether the token is supported by Crossmint

Example response

{
  "token": "solana:6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN",
  "available": true,
  "features": {
    "creditCardPayment": true
  }
}