MiCA Register
Registry Statistics
Aggregate statistics across the MiCA register
GET
/
api
/
mica
/
v1
/
statistics
curl "https://api.trusset.org/api/mica/v1/statistics" \
-H "X-API-Key: trusset_mica_your_key_here"
const response = await fetch(
'https://api.trusset.org/api/mica/v1/statistics',
{ headers: { 'X-API-Key': 'trusset_mica_your_key_here' } }
);
const { data: stats } = await response.json();
console.log(`Total entities: ${stats.totalEntities}`);
{
"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"
}
}
Returns summary statistics for the entire registry: total entity count, breakdowns by license type, country, and status, plus the 10 most recently authorized entities.
Response Fields
Request status
Show child attributes
Show child attributes
Total registered entities
Array of
{ type, label, count } objects sorted by count descending. type is the code (CASP, ART, EMT, OTHER, NON_COMPLIANT), label is the human-readable name.Array of
{ code, name, count } objects sorted by count descending.Map of status to count, e.g.
{ "active": 150, "expired": 3, "non_compliant": 12 }.The 10 most recently authorized entities. Each contains
entityName, licenseType, countryCode, and authorizationDate.curl "https://api.trusset.org/api/mica/v1/statistics" \
-H "X-API-Key: trusset_mica_your_key_here"
const response = await fetch(
'https://api.trusset.org/api/mica/v1/statistics',
{ headers: { 'X-API-Key': 'trusset_mica_your_key_here' } }
);
const { data: stats } = await response.json();
console.log(`Total entities: ${stats.totalEntities}`);
{
"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"
}
}
⌘I
curl "https://api.trusset.org/api/mica/v1/statistics" \
-H "X-API-Key: trusset_mica_your_key_here"
const response = await fetch(
'https://api.trusset.org/api/mica/v1/statistics',
{ headers: { 'X-API-Key': 'trusset_mica_your_key_here' } }
);
const { data: stats } = await response.json();
console.log(`Total entities: ${stats.totalEntities}`);
{
"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"
}
}
