Skip to main content
GET
/
api
/
mica
/
v1
/
license-types
curl "https://api.trusset.org/api/mica/v1/license-types" \
  -H "X-API-Key: trusset_mica_your_key_here"
{
  "success": true,
  "data": [
    { "type": "CASP", "label": "Crypto-Asset Service Provider", "count": 185 },
    { "type": "EMT", "label": "E-Money Token Issuer", "count": 62 },
    { "type": "ART", "label": "Asset-Referenced Token Issuer", "count": 34 },
    { "type": "OTHER", "label": "Other Crypto-Asset", "count": 19 },
    { "type": "NON_COMPLIANT", "label": "Non-Compliant Entity", "count": 12 }
  ],
  "metadata": {
    "timestamp": "2025-06-15T12:00:00.000Z"
  }
}
Returns the distinct license types present in the registry with their labels and entity counts.

Response Fields

success
boolean
Request status
data
array
Array of license type objects, sorted by count descending.
curl "https://api.trusset.org/api/mica/v1/license-types" \
  -H "X-API-Key: trusset_mica_your_key_here"
{
  "success": true,
  "data": [
    { "type": "CASP", "label": "Crypto-Asset Service Provider", "count": 185 },
    { "type": "EMT", "label": "E-Money Token Issuer", "count": 62 },
    { "type": "ART", "label": "Asset-Referenced Token Issuer", "count": 34 },
    { "type": "OTHER", "label": "Other Crypto-Asset", "count": 19 },
    { "type": "NON_COMPLIANT", "label": "Non-Compliant Entity", "count": 12 }
  ],
  "metadata": {
    "timestamp": "2025-06-15T12:00:00.000Z"
  }
}