MiCA Register
Get Issuer
Retrieve a single MiCA-registered entity by ID
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"
const response = await fetch(
'https://api.trusset.org/api/mica/v1/issuers/clx_abc123',
{ headers: { 'X-API-Key': 'trusset_mica_your_key_here' } }
);
const { data: issuer } = await response.json();
import requests
response = requests.get(
'https://api.trusset.org/api/mica/v1/issuers/clx_abc123',
headers={'X-API-Key': 'trusset_mica_your_key_here'}
)
issuer = response.json()['data']
{
"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"
}
}
{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Issuer not found"
}
}
{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid issuer ID"
}
}
Returns full details for a specific issuer. The
id corresponds to the internal identifier returned in list and search results.
Path Parameters
Issuer ID. Max 100 characters.
Response Fields
Request status
Full issuer object with all available fields (same schema as List Issuers items).
curl "https://api.trusset.org/api/mica/v1/issuers/clx_abc123" \
-H "X-API-Key: trusset_mica_your_key_here"
const response = await fetch(
'https://api.trusset.org/api/mica/v1/issuers/clx_abc123',
{ headers: { 'X-API-Key': 'trusset_mica_your_key_here' } }
);
const { data: issuer } = await response.json();
import requests
response = requests.get(
'https://api.trusset.org/api/mica/v1/issuers/clx_abc123',
headers={'X-API-Key': 'trusset_mica_your_key_here'}
)
issuer = response.json()['data']
{
"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"
}
}
{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Issuer not found"
}
}
{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid issuer ID"
}
}
⌘I
curl "https://api.trusset.org/api/mica/v1/issuers/clx_abc123" \
-H "X-API-Key: trusset_mica_your_key_here"
const response = await fetch(
'https://api.trusset.org/api/mica/v1/issuers/clx_abc123',
{ headers: { 'X-API-Key': 'trusset_mica_your_key_here' } }
);
const { data: issuer } = await response.json();
import requests
response = requests.get(
'https://api.trusset.org/api/mica/v1/issuers/clx_abc123',
headers={'X-API-Key': 'trusset_mica_your_key_here'}
)
issuer = response.json()['data']
{
"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"
}
}
{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Issuer not found"
}
}
{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid issuer ID"
}
}
