import_fomo_snapshot
Save a recent user/agent-observed Robinhood FOMO board or named public action. Unverified snapshot, not an API feed. Never send cookies or viewer positions.
Import observed FOMO board
Save a recent user/agent-observed Robinhood FOMO board or named public action. Unverified snapshot, not an API feed. Never send cookies or viewer positions.
Permission and calling convention
Required scope: monitors:write. This tool can change account-owned settings or prepare a request. Use only for an intentional user action.
This tool does not sign or broadcast a transaction. Check errors, source timestamps and explicit unavailable fields before using the result.
POST /api/tools/import_fomo_snapshot
Authorization: Bearer <ULTRON_ACCESS_KEY>
Content-Type: application/jsonInput schema
Inputs are validated against this current schema. Use exact values from live source results rather than substituting a ticker for a contract or a different chain.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"sourceUrl": {
"type": "string",
"maxLength": 300,
"format": "uri"
},
"observedAt": {
"type": "string",
"format": "date-time",
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?(?:Z))$"
},
"rows": {
"minItems": 1,
"maxItems": 30,
"type": "array",
"items": {
"type": "object",
"properties": {
"token": {
"type": "string",
"pattern": "^0x[0-9a-fA-F]{40}$"
},
"chainId": {
"type": "number",
"const": 4663
},
"symbol": {
"type": "string",
"maxLength": 40
},
"heat": {
"type": "number",
"minimum": 0
},
"buyerHandle": {
"type": "string",
"pattern": "^[a-zA-Z0-9_.-]{1,60}$"
},
"action": {
"default": "board",
"type": "string",
"enum": [
"board",
"buy",
"sell"
]
}
},
"required": [
"token",
"chainId",
"symbol",
"action"
],
"additionalProperties": false
}
}
},
"required": [
"sourceUrl",
"observedAt",
"rows"
],
"additionalProperties": false
}