Dirigon

Docs

Fund profile

Same idea as Fund profile in the terminal. Search by ticker, name, or CIK.

Overview

Exact ticker or CIK opens the fund card. Quote book.fv_m. Many hits return filers[].

GET https://dirigon.com/v1/filers?q=ARCC
GET https://dirigon.com/v1/filers/1287750

Query

ParamWhereMeaning
qqueryName, ticker, or CIK.
cikpathSEC CIK of the fund.
limitqueryHow many rows to return. Default 100, max 500.

Example

import requests
headers = {"X-API-KEY": "YOUR_KEY"}
body = requests.get("https://dirigon.com/v1/filers?q=ARCC", headers=headers).json()
fil = body.get("filer") or (body.get("filers") or [{}])[0]
print(fil.get("name"), fil.get("cik"), (body.get("book") or {}).get("fv_m") or fil.get("total_fv_m"))
curl "https://dirigon.com/v1/filers?q=ARCC" -H "X-API-KEY: YOUR_KEY"

Response

{
  "filer": {
    "cik": 1287750,
    "name": "ARES CAPITAL CORP",
    "ticker": "ARCC"
  }
}

Fields

FieldMeaning
cikSEC id for the fund.
nameFund name.
tickerListed ticker when there is one.
managerAdviser.
period_endLatest SOI period.
n_positionsLines on the tape.
total_fv_mFair value of that tape, $ millions.
filing_urlLink to the SEC filing.

Next: SOI tape.

Markdown for agents

The full book is on the terminal. Request access for a seat.