Skip to main content
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"
{
  "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"
  }
}
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

q
string
required
Search query. Minimum 2 characters, maximum 200. Matched against entityName, entityIdentifier, commercialName, and nationalAuthority.
limit
integer
default:"20"
Maximum number of results. Capped at 100.

Response Fields

success
boolean
Request status
data
array
Array of matching issuer objects
pagination
object
metadata
object
curl "https://api.trusset.org/api/mica/v1/search?q=bitpanda&limit=5" \
  -H "X-API-Key: trusset_mica_your_key_here"
{
  "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"
  }
}