MiCA Register
License Types
List all MiCA license types with entity counts
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"
const response = await fetch(
'https://api.trusset.org/api/mica/v1/license-types',
{ headers: { 'X-API-Key': 'trusset_mica_your_key_here' } }
);
const { data: types } = await response.json();
{
"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
boolean
Request status
array
curl "https://api.trusset.org/api/mica/v1/license-types" \
-H "X-API-Key: trusset_mica_your_key_here"
const response = await fetch(
'https://api.trusset.org/api/mica/v1/license-types',
{ headers: { 'X-API-Key': 'trusset_mica_your_key_here' } }
);
const { data: types } = await response.json();
{
"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"
}
}
⌘I
curl "https://api.trusset.org/api/mica/v1/license-types" \
-H "X-API-Key: trusset_mica_your_key_here"
const response = await fetch(
'https://api.trusset.org/api/mica/v1/license-types',
{ headers: { 'X-API-Key': 'trusset_mica_your_key_here' } }
);
const { data: types } = await response.json();
{
"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"
}
}
