Sections represent the canonical, normalized groupings into which line items are classified across all MKK fund disclosure documents. Because raw documents use varied heading conventions, the API maps each raw section label to a single canonical section (identified by itsDocumentation Index
Fetch the complete documentation index at: https://demircancelebi.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
sectionId slug). You can use section filters on the line-items and line-item-values endpoints to narrow results to a specific area of a fund’s financial statements.
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /sections | List all canonical sections |
GET | /sections/{sectionId} | Retrieve detail for a single section |
https://mkk-roan.vercel.app/api
GET /sections
Returns the full list of canonical sections, with optional filtering by fund or free-text search.Query parameters
Filter sections to those that appear in documents belonging to the fund with this internal database ID.
Filter sections to those that appear in documents belonging to the fund with this fund code (e.g.,
OJB). Use this instead of fund_id when you know the fund code.Free-text search against section names. Returns sections whose name contains the query string (case-insensitive).
Response schema
Array of canonical section summary objects.
Example requests
Example response
200
GET /sections/
Returns detailed information for a single canonical section, including all line items belonging to it.Path parameters
The canonical slug for the section (e.g.,
net-asset-value). This corresponds to the sectionId field returned by GET /sections.Query parameters
Restrict the returned
line_items to those that appear in documents for the fund with this internal ID.Restrict the returned
line_items to those that appear in documents for the fund with this fund code (e.g., OJB).When set to a truthy value (
1, true, yes, or on), each line item in the line_items array includes its extracted values array. Omit for lighter responses when you only need the line item metadata.Response schema
SectionDetail extends SectionSummary with:
Internal database identifier.
Canonical slug.
Human-readable name.
Display sort order.
Number of line items in this section.
Number of documents with data in this section.
Number of funds with data in this section.
Full array of canonical line items belonging to this section. When
include_values is truthy, each line item also includes a values array of extracted values. See the Line Items reference for the full LineItem schema.Error responses
| Status | Description |
|---|---|
404 | No section with the given sectionId slug exists. |
Example requests
Example response
200
404