> ## 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.

# Get Issuer

> Retrieve a single MiCA-registered entity by ID

Returns full details for a specific issuer. The `id` corresponds to the internal identifier returned in list and search results.

## Path Parameters

<ParamField path="id" type="string" required>
  Issuer ID. Max 100 characters.
</ParamField>

## Response Fields

<ResponseField name="success" type="boolean">Request status</ResponseField>

<ResponseField name="data" type="object">
  Full issuer object with all available fields (same schema as [List Issuers](/endpoints/mica-register/list-issuers) items).
</ResponseField>

<ResponseField name="metadata" type="object">
  <Expandable>
    <ResponseField name="timestamp" type="string">ISO 8601 response timestamp</ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.trusset.org/api/mica/v1/issuers/clx_abc123" \
    -H "X-API-Key: trusset_mica_your_key_here"
  ```

  ```typescript TypeScript theme={null}
  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();
  ```

  ```python Python theme={null}
  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']
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "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"
    }
  }
  ```

  ```json Error - Not Found theme={null}
  {
    "success": false,
    "error": {
      "code": "NOT_FOUND",
      "message": "Issuer not found"
    }
  }
  ```

  ```json Error - Invalid ID theme={null}
  {
    "success": false,
    "error": {
      "code": "VALIDATION_ERROR",
      "message": "Invalid issuer ID"
    }
  }
  ```
</ResponseExample>
