Skip to main content
GET
/
api
/
mica
/
v1
/
issuers
/
{id}
curl "https://api.trusset.org/api/mica/v1/issuers/clx_abc123" \
  -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",
    "websitePlatform": null,
    "authorizationDate": "2025-03-01T00:00:00.000Z",
    "authorizationEndDate": null,
    "services": ["service_1", "service_3"],
    "passportedCountries": ["FR", "NL"],
    "status": "active",
    "comments": null
  },
  "metadata": {
    "timestamp": "2025-06-15T12:00:00.000Z"
  }
}
Returns full details for a specific issuer. The id corresponds to the internal identifier returned in list and search results.

Path Parameters

id
string
required
Issuer ID. Max 100 characters.

Response Fields

success
boolean
Request status
data
object
Full issuer object with all available fields (same schema as List Issuers items).
metadata
object
curl "https://api.trusset.org/api/mica/v1/issuers/clx_abc123" \
  -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",
    "websitePlatform": null,
    "authorizationDate": "2025-03-01T00:00:00.000Z",
    "authorizationEndDate": null,
    "services": ["service_1", "service_3"],
    "passportedCountries": ["FR", "NL"],
    "status": "active",
    "comments": null
  },
  "metadata": {
    "timestamp": "2025-06-15T12:00:00.000Z"
  }
}