Skip to main content
GET
/
api
/
mica
/
v1
/
statistics
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"
  }
}
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

success
boolean
Request status
data
object
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"
  }
}