hedgefundmonitor

Installation
SKILL.md

OFR Hedge Fund Monitor API

Free, open REST API from the U.S. Office of Financial Research (OFR) providing aggregated hedge fund time series data. No API key or registration required.

Base URL: https://data.financialresearch.gov/hf/v1

Quick Start

import requests
import pandas as pd

BASE = "https://data.financialresearch.gov/hf/v1"

# List all available datasets
resp = requests.get(f"{BASE}/series/dataset")
datasets = resp.json()
# Returns: {"ficc": {...}, "fpf": {...}, "scoos": {...}, "tff": {...}}
Related skills
Installs
3
GitHub Stars
8
First Seen
Mar 10, 2026