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

# Fetch Event Details

> The Fetch Event Details endpoint lets you retrieve the full payload and decision data for a previously ingested event.

### Request

```http [GET] theme={null}
{{baseURL}}/event/{event_id}
```

### Header

| Header        | Type   | Description |
| ------------- | ------ | ----------- |
| Authorization | string | private key |

### Path Parameters

| Parameter | Type   | Description                                                                  | Required |
| --------- | ------ | ---------------------------------------------------------------------------- | -------- |
| event\_id | string | Unique identifier assigned or echoed by ProfiledRisk for the evaluated event | required |

### Successful Response

```json Response theme={null}
    {
      "event_id": "ProfiledRisk-20231111085937073",
      "type": "banking",
      "event": {
        "meta": [
          { "transaction_id": "ProfiledRisk-20231111085937073" }
        ],
        "user": {
          "name": "Maplerad-Provarex-Acc  None",
          "email": "",
          "mobile": "None",
          "user_id": "4ac1bc59-34ad-485a-bda5-eb406a49a411",
          "registration_time": "1696421468798421"
        },
        "device": {
          "os": "Android",
          "type": "mobile",
          "model": "Pixel 7",
          "language": "en/US",
          "device_id": "ff97adb7-8d3d-4f15-94df-87e21e1212de",
          "ip_address": "154.72.170.233"
        },
        "sender": {
          "country": "NG",
          "bank_name": "",
          "account_name": "Paystack",
          "account_number": "1017692813"
        },
        "address": {
          "city": "Lagos",
          "street": "Ikeja",
          "country": "Nigeria"
        },
        "receiver": {
          "country": "NG",
          "bank_name": "VFD_NEW",
          "account_name": "",
          "account_number": "1029283851"
        },
        "transaction": {
          "id": "ProfiledRisk-20231111085937073",
          "ref": "ProfiledRisk-20231111085937073",
          "time": "1699693180085313",
          "type": "deposit",
          "amount": 300,
          "channel": "transfer",
          "currency": "NGN",
          "session_id": "ProfiledRisk-20231111085937073"
        }
      },
      "decision": {
        "status": "allowed",
        "risk_score": 30,
        "risk_level": "low",
        "case_created": false,
        "rule_status": false
      },
      "behavioral": {
        "UnusualTimeTransactions": {
          "state": true,
          "description": "User transaction time is outside of normal business hours"
        },
        "AbnormalTransactionVolume": {
          "state": true,
          "description": "User has abnormally high transaction volume of 34 within a short period"
        }
      },
      "created_at": "2023-11-11T08:59:37.073Z"
    }
```
