Demo

Use Silfio in the browser or through your own systems.

This draft walkthrough shows the two common paths: run an interactive scenario in the Silfio Engine, or submit the same case through an API workflow for repeatable internal analysis.

engine.silfio.com
Scenario test

Estimate 12-month country conflict risk and exposed loss.

Ready
Country
Ukraine
Horizon
12 months
Exposure
$12.5M property
Model output
42%
12-month conflict probability

Browser demo

Run a scenario interactively

The browser workflow is best for analysts who want to inspect assumptions, compare outputs, and share a concrete scenario with a wider risk or investment team.

Open the Engine

Start from the browser interface to explore country risk, scenario testing, and exposure inputs without writing code.

Define the case

Select a country, choose the relevant horizon, then add properties, policy details, or investment exposure where needed.

Review outputs

Compare conflict probability, severity assumptions, hotspot exposure, and estimated financial impact in a single workflow.

API demo

Integrate the model output

Use the API path when scenarios need to run on a schedule, feed a portfolio dashboard, or connect with existing underwriting, investment, or enterprise risk tooling.

Request access

API keys are issued for approved integration, data licensing, and enterprise pilot workflows.

Send a scenario

Submit the country, assets, and exposure assumptions your system already manages.

Store model output

Use the response in dashboards, pricing tools, portfolio monitors, or internal risk systems.

Example request
curl https://api.silfio.com/v1/scenarios/run \
  -H "Authorization: Bearer $SILFIO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "country": "Ukraine",
    "horizonMonths": 12,
    "exposures": [
      {
        "type": "property",
        "name": "Kyiv logistics hub",
        "latitude": 50.4501,
        "longitude": 30.5234,
        "insuredValue": 12500000,
        "currency": "USD"
      }
    ]
  }'
Example response
{
  "scenarioId": "scn_01H...",
  "country": "Ukraine",
  "horizonMonths": 12,
  "conflictProbability": 0.42,
  "severityBand": "elevated",
  "expectedLoss": {
    "amount": 385000,
    "currency": "USD"
  },
  "drivers": [
    "regional security posture",
    "recent incident sentiment",
    "asset proximity to historical hotspots"
  ]
}

Endpoint names, fields, and response values are illustrative while public API documentation is being finalized.

Ready to try a real case?

Start with the browser demo, then contact Silfio for API access or a model walkthrough tailored to your exposure data.

Contact us