> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cryptomate.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Get risk score fuse state

> Check whether the risk score fuse is currently armed for a card.

Returns the current state of the risk score fuse for a virtual card. Returns `404` if no fuse is armed. Requires an API key with access level 1 or higher.

## Path parameters

<ParamField path="cardId" type="string" required>
  Card identifier.
</ParamField>

## Response

<ResponseField name="card_id" type="string">
  Card identifier the fuse is armed for.
</ResponseField>

<ResponseField name="company_id" type="string">
  Company identifier that owns the card.
</ResponseField>

<ResponseField name="activated_by" type="string">
  Identifier of who activated the fuse (company ID for API, user email for Portal).
</ResponseField>

<ResponseField name="activated_at" type="string">
  ISO 8601 timestamp of when the fuse was armed.
</ResponseField>

<ResponseField name="channel" type="string">
  Channel through which the fuse was armed (`API` or `PORTAL`).
</ResponseField>

<ResponseField name="reason" type="string">
  Reason provided when arming the fuse, if any.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.cryptomate.me/cards/virtual-cards/card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/risk-score-fuse" \
    -H "x-api-key: $CRYPTOMATE_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "card_id": "card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23",
    "company_id": "company_abc123",
    "activated_by": "company_abc123",
    "activated_at": "2026-05-31T14:30:00",
    "channel": "API",
    "reason": "Manual override for trusted transaction"
  }
  ```

  ```json 404 Not Found theme={null}
  ```
</ResponseExample>
