First Compliance Check

Get up and running with Reflex in minutes. Run your first automated compliance workflow against a Lightning node, invoice, or address.

Get up and running with Reflex in minutes. This guide walks you through running your first compliance workflow.

Prerequisites

Create an Amboss account

Sign up if you don't already have one.

Generate an API key

Create an API key from your account settings.

Open the Reflex dashboard

Make sure you can access the Reflex dashboard.

Quick Start: Check a Lightning Node

The fastest way to try Reflex is to run a node compliance check. This screens a node's IP addresses and channels against OFAC sanctions lists.

Log in

Open reflex.amboss.tech and log in.

Find the Workflows section in the sidebar.

Pick the node-check template

Select the node check template.

Run the workflow

Enter a public key and run the workflow.

View results

Inspect the result in the dashboard.

Mutation:

mutation Create($input: WorkflowRunInput!) {
  workflows {
    runs {
      create(input: $input) {
        workflow_run_id
      }
    }
  }
}

Variables:

{
  "input": {
    "template_id": "57e37de9-101f-41f6-8827-91e075b50225",
    "webhook_url": "https://your-webhook-endpoint.com",
    "workflow_input": [
      {
        "name": "PUBKEY",
        "value": "YOUR_TARGET_NODE_PUBKEY"
      }
    ]
  }
}

Include your API key in the Authorization: Bearer [API_KEY] header. See Authentication for details.

What's Next