The health endpoints give you a quick way to verify that the API is online and to inspect the current size of the indexed dataset. BothDocumentation Index
Fetch the complete documentation index at: https://demircancelebi.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
GET / and GET /health return the same HealthResponse object, so you can use either path as a liveness probe in your monitoring stack.
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /health | Returns API status and dataset counts |
GET | / | Alias for GET /health |
https://mkk-roan.vercel.app/api
GET /health
Returns aHealthResponse confirming the service is running along with aggregate counts for each major collection in the database.
GET / and GET /health are identical. Use whichever path is more convenient for your health check setup.Response schema
Always
"ok" when the service is healthy.Total number of parsed fund disclosure documents in the database.
Total number of distinct funds tracked across all documents.
Total number of canonical sections defined in the schema.
Total number of canonical line item definitions.
Total number of extracted line item values across all documents.
Total number of normalized portfolio entries across all documents.
Total number of raw portfolio table rows extracted from documents.
Example request
Example response
200