reconurge-flowsint
- Description:
Unlock the power of ethical intelligence with Flowsint, the ultimate open-source OSINT tool. Dive deep into graph-based investigations with cutting-edge enrichers for domains, IPs, organizations, and more!
- Copyright:
- 2026 Eyevinn Technology AB
Methods
(async, static) createReconurgeFlowsintInstance(context, body) → {ReconurgeFlowsint}
- Description:
Create a new Flowsint instance
Example
import { Context } from '@osaas/client-core';
import { createReconurgeFlowsintInstance } from '@osaas/client-services';
const ctx = new Context();
const body: ReconurgeFlowsintConfig = { name: 'myinstance', ... };
const instance = await createReconurgeFlowsintInstance(ctx, body);
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
ReconurgeFlowsintConfig | Service instance configuration |
Returns:
- Service instance
- Type
- ReconurgeFlowsint
(async, static) getReconurgeFlowsintInstance(context, name) → {ReconurgeFlowsint}
- Description:
Get a Flowsint instance
Example
import { Context } from '@osaas/client-core';
import { getReconurgeFlowsintInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getReconurgeFlowsintInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the flowsint to be retrieved |
Returns:
- Service instance
- Type
- ReconurgeFlowsint
(async, static) removeReconurgeFlowsintInstance(context, name)
- Description:
Remove a Flowsint instance
Parameters:
| Name | Type | Description |
|---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the flowsint to be removed |