API reference
101 endpoints, read from the source
These documents were not written by hand and were not fetched from a running service — there isn't one. Each Solution's FastAPI module is parsed at build time and turned into an OpenAPI 3.1 document, so the reference cannot drift from the code the way a hand-maintained one does. It can only be as complete as the source is explicit, which is why an app that registers routes dynamically is flagged rather than quietly under-reported.
14 of 70 Solutions carry an API today. The specs ship in the repository under config/schemas/api/, one per Solution plus a gateway document mounting them all under /v1/{solution_id}.
Solutions with an API
14
of 70 in the network
Endpoints documented
101
GET 70 · POST 31
Behind auth
0
routes declaring a dependency
Deployed
0
specs describe source, not a running service
python_api
Read from src/python_api/fastapi_app.py · gateway prefix /v1/ai-math-drawing
Gateway routing
One entry point in front of every Solution API. A request to /v1/{solution_id}/... is routed to that Solution's own service; the gateway adds nothing to the payload contract, so a client written against a Solution's own document works unchanged behind the prefix.
No servers block: no Golden Enterprises API is deployed yet. This document describes routes read from the Solution's own source, not a running service. Add a server URL when the Cloud Run deployment exists.
| Prefix | Solution | Endpoints | Source |
|---|---|---|---|
| /v1/ai-math-drawing | ai-math-drawing | 8 | src/python_api/fastapi_app.py |
| /v1/focus-calendar | focus-calendar | 24 | src/python_api/fastapi_app.py |
| /v1/grant | grant | 4 | src/python_api/fastapi_app.py |
| /v1/hands | hands | 8 | src/python_api/app.py |
| /v1/honeycomb | honeycomb | 4 | src/python_api/fastapi_app.py |
| /v1/icons-golden-enterprises-solutions | icons-golden-enterprises-solutions | 6 | src/python_api/main.py |
| /v1/icons-marketing-plan | icons-marketing-plan | 4 | src/python_api/fastapi_app.py |
| /v1/icons-nuts-and-seeds | icons-nuts-and-seeds | 5 | src/python_api/app.py |
| /v1/immersive-topology | immersive-topology | 5 | src/python_api/fastapi_app.py |
| /v1/language | language | 9 | src/python_api/fastapi_app.py |
| /v1/network-algorithm-curve | network-algorithm-curve | 3 | src/python_api/fastapi_app.py |
| /v1/newspaper | newspaper | 8 | src/python_api/fastapi_app.py |
| /v1/sound | sound | 6 | src/python_api/fastapi_app.py |
| /v1/theme | theme | 7 | src/python_api/app.py |
Not documented
These Solutions have an API module that could not be read. Listing them is the point — a missing entry above would otherwise look like a Solution with no API.
- Paper 6 (Navier-Stokes) — could not be parsed: invalid syntax