MiCA Register
Search Issuers
Full-text search across MiCA-registered entities
GET
/
api
/
mica
/
v1
/
search
curl "https://api.trusset.org/api/mica/v1/search?q=bitpanda&limit=5" \
-H "X-API-Key: trusset_mica_your_key_here"
const response = await fetch(
'https://api.trusset.org/api/mica/v1/search?q=bitpanda&limit=5',
{ headers: { 'X-API-Key': 'trusset_mica_your_key_here' } }
);
const { data: results } = await response.json();
import requests
response = requests.get(
'https://api.trusset.org/api/mica/v1/search',
headers={'X-API-Key': 'trusset_mica_your_key_here'},
params={'q': 'bitpanda', 'limit': 5}
)
results = response.json()['data']
{
"success": true,
"data": [
{
"id": "clx_def456",
"entityName": "Bitpanda GmbH",
"entityIdentifier": "529900EXAMPLE00LEI01",
"licenseType": "CASP",
"entityType": "provider",
"country": "Austria",
"countryCode": "AT",
"nationalAuthority": "FMA",
"authorizationDate": "2025-01-15T00:00:00.000Z",
"status": "active"
}
],
"pagination": {
"total": 1,
"returned": 1,
"query": "bitpanda"
},
"metadata": {
"source": "cache",
"timestamp": "2025-06-15T12:00:00.000Z"
}
}
{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Search query (q) must be at least 2 characters"
}
}
Search entities by name, LEI, commercial name, or national authority. This is a dedicated search endpoint optimized for quick lookups. For advanced filtering and pagination, use List Issuers instead.
Query Parameters
string
required
Search query. Minimum 2 characters, maximum 200. Matched against
entityName, entityIdentifier, commercialName, and nationalAuthority.integer
default:"20"
Maximum number of results. Capped at
100.Response Fields
boolean
Request status
array
Array of matching issuer objects
object
curl "https://api.trusset.org/api/mica/v1/search?q=bitpanda&limit=5" \
-H "X-API-Key: trusset_mica_your_key_here"
const response = await fetch(
'https://api.trusset.org/api/mica/v1/search?q=bitpanda&limit=5',
{ headers: { 'X-API-Key': 'trusset_mica_your_key_here' } }
);
const { data: results } = await response.json();
import requests
response = requests.get(
'https://api.trusset.org/api/mica/v1/search',
headers={'X-API-Key': 'trusset_mica_your_key_here'},
params={'q': 'bitpanda', 'limit': 5}
)
results = response.json()['data']
{
"success": true,
"data": [
{
"id": "clx_def456",
"entityName": "Bitpanda GmbH",
"entityIdentifier": "529900EXAMPLE00LEI01",
"licenseType": "CASP",
"entityType": "provider",
"country": "Austria",
"countryCode": "AT",
"nationalAuthority": "FMA",
"authorizationDate": "2025-01-15T00:00:00.000Z",
"status": "active"
}
],
"pagination": {
"total": 1,
"returned": 1,
"query": "bitpanda"
},
"metadata": {
"source": "cache",
"timestamp": "2025-06-15T12:00:00.000Z"
}
}
{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Search query (q) must be at least 2 characters"
}
}
⌘I
curl "https://api.trusset.org/api/mica/v1/search?q=bitpanda&limit=5" \
-H "X-API-Key: trusset_mica_your_key_here"
const response = await fetch(
'https://api.trusset.org/api/mica/v1/search?q=bitpanda&limit=5',
{ headers: { 'X-API-Key': 'trusset_mica_your_key_here' } }
);
const { data: results } = await response.json();
import requests
response = requests.get(
'https://api.trusset.org/api/mica/v1/search',
headers={'X-API-Key': 'trusset_mica_your_key_here'},
params={'q': 'bitpanda', 'limit': 5}
)
results = response.json()['data']
{
"success": true,
"data": [
{
"id": "clx_def456",
"entityName": "Bitpanda GmbH",
"entityIdentifier": "529900EXAMPLE00LEI01",
"licenseType": "CASP",
"entityType": "provider",
"country": "Austria",
"countryCode": "AT",
"nationalAuthority": "FMA",
"authorizationDate": "2025-01-15T00:00:00.000Z",
"status": "active"
}
],
"pagination": {
"total": 1,
"returned": 1,
"query": "bitpanda"
},
"metadata": {
"source": "cache",
"timestamp": "2025-06-15T12:00:00.000Z"
}
}
{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Search query (q) must be at least 2 characters"
}
}
