curl "https://api.trusset.org/api/mica/v1/statistics" \
-H "X-API-Key: trusset_mica_your_key_here"
{
"success": true,
"data": {
"totalEntities": 312,
"licenseTypes": [
{ "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 }
],
"countries": [
{ "code": "DE", "name": "Germany", "count": 45 },
{ "code": "FR", "name": "France", "count": 38 },
{ "code": "LT", "name": "Lithuania", "count": 29 }
],
"byStatus": {
"active": 287,
"expired": 13,
"non_compliant": 12
},
"recentAuthorizations": [
{
"entityName": "Example Crypto AG",
"licenseType": "CASP",
"countryCode": "DE",
"authorizationDate": "2025-06-01T00:00:00.000Z"
}
]
},
"metadata": {
"timestamp": "2025-06-15T12:00:00.000Z"
}
}
Aggregate statistics across the MiCA register
curl "https://api.trusset.org/api/mica/v1/statistics" \
-H "X-API-Key: trusset_mica_your_key_here"
{
"success": true,
"data": {
"totalEntities": 312,
"licenseTypes": [
{ "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 }
],
"countries": [
{ "code": "DE", "name": "Germany", "count": 45 },
{ "code": "FR", "name": "France", "count": 38 },
{ "code": "LT", "name": "Lithuania", "count": 29 }
],
"byStatus": {
"active": 287,
"expired": 13,
"non_compliant": 12
},
"recentAuthorizations": [
{
"entityName": "Example Crypto AG",
"licenseType": "CASP",
"countryCode": "DE",
"authorizationDate": "2025-06-01T00:00:00.000Z"
}
]
},
"metadata": {
"timestamp": "2025-06-15T12:00:00.000Z"
}
}
Show child attributes
{ type, label, count } objects sorted by count descending. type is the code (CASP, ART, EMT, OTHER, NON_COMPLIANT), label is the human-readable name.{ code, name, count } objects sorted by count descending.{ "active": 150, "expired": 3, "non_compliant": 12 }.entityName, licenseType, countryCode, and authorizationDate.curl "https://api.trusset.org/api/mica/v1/statistics" \
-H "X-API-Key: trusset_mica_your_key_here"
{
"success": true,
"data": {
"totalEntities": 312,
"licenseTypes": [
{ "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 }
],
"countries": [
{ "code": "DE", "name": "Germany", "count": 45 },
{ "code": "FR", "name": "France", "count": 38 },
{ "code": "LT", "name": "Lithuania", "count": 29 }
],
"byStatus": {
"active": 287,
"expired": 13,
"non_compliant": 12
},
"recentAuthorizations": [
{
"entityName": "Example Crypto AG",
"licenseType": "CASP",
"countryCode": "DE",
"authorizationDate": "2025-06-01T00:00:00.000Z"
}
]
},
"metadata": {
"timestamp": "2025-06-15T12:00:00.000Z"
}
}