get-streaming-results
Retrieve real-time mortgage rate updates using a session ID, with customizable output formats, polling intervals, and stability checks for accurate results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Output format | markdown |
| maxAttempts | No | Maximum number of polling attempts | |
| pollInterval | No | Polling interval in milliseconds | |
| sessionId | Yes | Session ID from get-mortgage-rates | |
| stopOnStable | No | Stop polling when record count stabilizes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"default": "markdown",
"description": "Output format",
"enum": [
"markdown",
"csv",
"json"
],
"type": "string"
},
"maxAttempts": {
"default": 10,
"description": "Maximum number of polling attempts",
"type": "number"
},
"pollInterval": {
"default": 3000,
"description": "Polling interval in milliseconds",
"type": "number"
},
"sessionId": {
"description": "Session ID from get-mortgage-rates",
"type": "string"
},
"stopOnStable": {
"default": true,
"description": "Stop polling when record count stabilizes",
"type": "boolean"
}
},
"required": [
"sessionId"
],
"type": "object"
}