Skip to main content
GET
/
api
/
mica
/
v1
/
issuers
curl "https://api.trusset.org/api/mica/v1/issuers?licenseType=CASP&country=DE&limit=10" \
  -H "X-API-Key: trusset_mica_your_key_here"
{
  "success": true,
  "data": [
    {
      "id": "clx_abc123",
      "entityName": "Example Crypto AG",
      "entityIdentifier": "529900EXAMPLE00LEI00",
      "licenseType": "CASP",
      "entityType": "provider",
      "country": "Germany",
      "countryCode": "DE",
      "nationalAuthority": "BaFin",
      "commercialName": "ExCrypto",
      "address": "Musterstraße 1, 10115 Berlin",
      "website": "https://example-crypto.de",
      "authorizationDate": "2025-03-01T00:00:00.000Z",
      "authorizationEndDate": null,
      "services": ["service_1", "service_3"],
      "passportedCountries": ["FR", "NL"],
      "status": "active",
      "comments": null
    }
  ],
  "pagination": {
    "total": 1,
    "returned": 1,
    "limit": 10,
    "offset": 0,
    "hasMore": false
  },
  "metadata": {
    "source": "cache",
    "timestamp": "2025-06-15T12:00:00.000Z"
  }
}
Returns all entities in the MiCA register. Supports filtering by license type, country, status, and entity type, with full-text search and field projection.

Query Parameters

licenseType
string
Comma-separated license types to filter by. Values: CASP, ART, EMT, OTHER, NON_COMPLIANT.
country
string
Comma-separated ISO country codes (e.g., DE,FR) or partial country name matches.
status
string
Comma-separated statuses. Values: active, expired, non_compliant.
entityType
string
Comma-separated entity types. Values: provider, issuer, whitepaper, non_compliant.
Free-text search across entityName, entityIdentifier, nationalAuthority, and commercialName. Max 200 characters.
sortBy
string
Field to sort by. Values: entityName, countryCode, licenseType, authorizationDate, status.
sortOrder
string
default:"asc"
Sort direction. Values: asc, desc.
limit
integer
default:"100"
Number of results per page. Maximum 500.
offset
integer
default:"0"
Number of results to skip for pagination.
fields
string
Comma-separated list of fields to include in the response. When omitted, all fields are returned. Allowed values: id, entityName, entityIdentifier, licenseType, country, countryCode, nationalAuthority, authorizationDate, status, commercialName, address, website, websitePlatform, services, passportedCountries, comments, authorizationEndDate, entityType.

Response Fields

success
boolean
Request status
data
array
Array of issuer objects. Each contains the fields listed in the fields parameter documentation. When no fields filter is applied, all available fields are returned.
pagination
object
metadata
object
The X-Total-Count and X-Data-Source response headers mirror pagination.total and metadata.source.
curl "https://api.trusset.org/api/mica/v1/issuers?licenseType=CASP&country=DE&limit=10" \
  -H "X-API-Key: trusset_mica_your_key_here"
{
  "success": true,
  "data": [
    {
      "id": "clx_abc123",
      "entityName": "Example Crypto AG",
      "entityIdentifier": "529900EXAMPLE00LEI00",
      "licenseType": "CASP",
      "entityType": "provider",
      "country": "Germany",
      "countryCode": "DE",
      "nationalAuthority": "BaFin",
      "commercialName": "ExCrypto",
      "address": "Musterstraße 1, 10115 Berlin",
      "website": "https://example-crypto.de",
      "authorizationDate": "2025-03-01T00:00:00.000Z",
      "authorizationEndDate": null,
      "services": ["service_1", "service_3"],
      "passportedCountries": ["FR", "NL"],
      "status": "active",
      "comments": null
    }
  ],
  "pagination": {
    "total": 1,
    "returned": 1,
    "limit": 10,
    "offset": 0,
    "hasMore": false
  },
  "metadata": {
    "source": "cache",
    "timestamp": "2025-06-15T12:00:00.000Z"
  }
}