Skip to main content

GET /v1/token-standards

List the QRC token standards Qustody supports or plans to support. Each entry exposes its supported operations, required configuration fields, and current implementation status.
AspectDetail
MethodGET
Path/v1/token-standards
AuthenticationBearer API key
Required permissionstokens:read
IdempotentYes — read-only
Approval policyNot applicable
Blockchain effectNone
Webhook eventsNone

Example response

{
  "data": [
    {
      "standard": "QRC-20",
      "type": "fungible",
      "description": "Quantum Chain fungible token standard.",
      "supportedOperations": ["deploy", "mint", "burn", "transfer", "pause", "unpause", "grantRole", "revokeRole"],
      "requiredFields": ["name", "symbol", "decimals"],
      "optionalFields": ["initialSupply", "supplyPolicy", "approvalPolicyId"],
      "financeUseCase": "Stablecoins, utility tokens, institutional balances.",
      "implementationStatus": "partially-implemented"
    },
    {
      "standard": "QRC-3643",
      "type": "permissioned",
      "description": "Identity- and compliance-aware regulated token.",
      "supportedOperations": ["deploy", "mint", "burn", "freeze", "unfreeze", "transfer", "updateCompliance"],
      "requiredFields": ["name", "symbol", "decimals", "complianceConfig"],
      "optionalFields": ["allowlist", "approvalPolicyId"],
      "financeUseCase": "Permissioned regulated assets with identity-aware transfers.",
      "implementationStatus": "proposed"
    }
  ],
  "pagination": { "total": 7, "limit": 50, "offset": 0 }
}

GET /v1/token-standards/{standard}

Fetch a single standard’s full descriptor.
AspectDetail
MethodGET
Path/v1/token-standards/{standard}
Path parameterstandard — one of QRC-20, QRC-721, QRC-1155, QRC-1400, QRC-3643, QRC-4626, QRC-3525

Errors

CodeTypeMeaning
1700TOKEN_STANDARD_NOT_SUPPORTEDUnknown or unsupported standard.