Reflex API Reference

GraphQL API reference for Reflex — programmatic compliance, risk scoring, and screening for Lightning Network operations.

Programmatic access to Reflex's compliance and risk management features.

Endpoint

https://reflex.amboss.tech/graphql

Authentication

Include your API key in the request header:

Authorization: Bearer [API_KEY]

Create an API key at account.amboss.tech/settings/api-keys. See the Developer docs for detailed authentication instructions.

Key Operations

Running Workflows

Create workflow runs to check nodes, invoices, and addresses:

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

See the guides for complete examples:

Webhook Configuration

Retrieve your team's webhook secret for payload authentication:

query Team {
  getUser {
    team {
      webhook_secret
    }
  }
}