Fetch a specific public FTIR analysis result by ID.
USE WHEN:
- User provides a result ID (e.g., "result:12345" or "12345")
- Following up on search to get full details
- User shares a result number and wants details
DO NOT USE:
- For searching by keyword (use search)
- For analyzing new spectra (use search_ftir_library)
INPUT:
- id: result identifier in format "result:<number>" or just "<number>"
OUTPUT:
- id: canonical result ID
- url: direct link to result page
- title: result headline
- text: analysis summary
- report_view: detailed analysis data
- metadata: additional information
EXAMPLE:
>>> fetch(id="result:12345")
>>> fetch(id="12345")
Connector