> For the complete documentation index, see [llms.txt](https://blackswanwtf.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://blackswanwtf.gitbook.io/docs/agents/flare.md).

# Flare

Before the news breaks. Catches risk signals before events materialize.

Window: 15 minutes

Purpose: Immediate alarm bell

Best for: Is something happening right now?

#### Quick Test

```
curl -s https://mcp.blackswan.wtf/api/flare
```

### Response Schema

```
{
  "agent": "flare",
  "data_age": "12 minutes ago",
  "status": "clear",
  "severity": "none",
  "checked_at": "2026-01-15T12:00:00Z",
  "assessment": "Markets quiet. No precursors detected.",
  "signals": []
}
```

#### Fields

| Field       | Type   | Description                                |
| ----------- | ------ | ------------------------------------------ |
| agent       | string | Always "flare"                             |
| data\_age   | string | Human-readable age of the data             |
| status      | string | "clear" or "alert"                         |
| severity    | string | Risk severity level                        |
| checked\_at | string | ISO 8601 timestamp                         |
| assessment  | string | Natural language risk assessment           |
| signals     | array  | Detected signals with type, source, detail |

#### Severity Levels

| Level    | Meaning                                          |
| -------- | ------------------------------------------------ |
| none     | No precursors detected, markets quiet            |
| low      | Minor signals, worth noting but not actionable   |
| medium   | Notable signals, warrants attention              |
| high     | Strong precursors, elevated risk of sudden moves |
| critical | Extreme signals, immediate risk of major event   |

### When to Use

* Before executing trades
* Monitoring for flash crash precursors
* Real-time alerting systems
* Agent decision loops

90% of Flare responses will be "clear". By design. Flare catches the 10% that matter.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://blackswanwtf.gitbook.io/docs/agents/flare.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
