GET
/
v1-alpha2
/
tokens
/
{tokenLocator}
curl --request GET \
  --url https://staging.crossmint.com/api/v1-alpha2/tokens/{tokenLocator} \
  --header 'X-API-KEY: <api-key>'
{
  "token": "solana:6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN",
  "available": true,
  "features": {
    "creditCardPayment": true
  }
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

tokenLocator
string
required

A unique identifier used to locate a specific fungible token on a blockchain. Currently, memecoin checkout only supports the Solana network. Format: solana:<mintHash> (e.g. solana:6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN).

Response

200
application/json
The token has been successfully retrieved.

Information regarding the token that was requested and its availability

token
string
required

The token locator that was queried

Example:

"solana:6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"

available
boolean
required

Whether the token is supported by Crossmint

Example:

true

features
object
required

The features show if the token is supported for credit card payment.