Dirigon

Docs

Find a private credit / BDC borrower

Search a borrower. Same idea as Find credit in the terminal.

Overview

q= an exact name, or one hit, returns the credit card: issuer plus marks. Many hits return issuers[]. A miss may still sit unmatched on a fund tape.

GET https://dirigon.com/v1/issuers?q=Coupa
GET https://dirigon.com/v1/issuers?sort=holders&limit=25

Query

ParamWhereMeaning
qqueryName search. Exact or one hit opens the card.
issuer_idpathCredit id (ISS-######).
limitqueryHow many rows to return. Default 100, max 500.
cursorqueryFrom next_page_url on a list.

Example

import requests
headers = {"X-API-KEY": "YOUR_KEY"}
body = requests.get("https://dirigon.com/v1/issuers?q=Coupa", headers=headers).json()
iss = body.get("issuer") or (body.get("issuers") or [{}])[0]
print(iss.get("issuer_id"), iss.get("display_name"), iss.get("n_holders"))
print("marks", len(body.get("marks") or []))
curl "https://dirigon.com/v1/issuers?q=Coupa" -H "X-API-KEY: YOUR_KEY"

Response (card)

{
  "issuer": {
    "issuer_id": "ISS-015563",
    "display_name": "Coupa"
  },
  "marks": []
}

Fields

FieldMeaning
issuer_idCredit id. Use this in later calls.
display_nameCredit name.
n_holdersHow many funds print it.
total_fv_mFair value across those holders, $ millions.
blockedTrue if the name is disputed. Skip it for comparisons.
marksHolder marks on the card. Same grain as Holder marks.

Next: Holder marks.

Markdown for agents

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