Skip to main content
GET
/
api
/
mica
/
v1
/
countries
curl "https://api.trusset.org/api/mica/v1/countries" \
  -H "X-API-Key: trusset_mica_your_key_here"
{
  "success": true,
  "data": [
    { "code": "DE", "name": "Germany", "count": 45 },
    { "code": "FR", "name": "France", "count": 38 },
    { "code": "LT", "name": "Lithuania", "count": 29 },
    { "code": "NL", "name": "Netherlands", "count": 22 },
    { "code": "AT", "name": "Austria", "count": 18 }
  ],
  "metadata": {
    "timestamp": "2025-06-15T12:00:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.trusset.org/llms.txt

Use this file to discover all available pages before exploring further.

Returns all countries that have at least one registered entity, sorted by entity count descending.

Response Fields

success
boolean
Request status
data
array
Array of country objects.
curl "https://api.trusset.org/api/mica/v1/countries" \
  -H "X-API-Key: trusset_mica_your_key_here"
{
  "success": true,
  "data": [
    { "code": "DE", "name": "Germany", "count": 45 },
    { "code": "FR", "name": "France", "count": 38 },
    { "code": "LT", "name": "Lithuania", "count": 29 },
    { "code": "NL", "name": "Netherlands", "count": 22 },
    { "code": "AT", "name": "Austria", "count": 18 }
  ],
  "metadata": {
    "timestamp": "2025-06-15T12:00:00.000Z"
  }
}