Skip to main content
GET
/
express
/
check-eligibility
Check express verification eligibility
curl --request GET \
  --url https://api.jup.ag/tokens/v2/verify/express/check-eligibility \
  --header 'x-api-key: <api-key>'
{
  "tokenExists": true,
  "isVerified": false,
  "canVerify": true,
  "canMetadata": false,
  "metadataError": "A premium metadata update request for this token already exists"
}

Authorizations

x-api-key
string
header
required

Get API key via https://portal.jup.ag

Query Parameters

tokenId
string
required

Token mint address to check eligibility for

Response

Eligibility check result

tokenExists
boolean
required

Whether the token exists on-chain

isVerified
boolean
required

Whether the token is already verified

canVerify
boolean
required

Whether a verification request can be submitted

canMetadata
boolean
required

Whether a metadata update can be submitted

verificationError
string

Reason verification is not allowed (only present when there is a specific error)

metadataError
string

Reason metadata update is not allowed (only present when there is a specific error)