Shadow Ingest HTTP Service¶
The HTTP service runs on 30110 and exposes FastAPI/OpenAPI documentation.
Use it for:
- frontend integration
- raw HTTP inspection
- service-level debugging
- checking the deployed OpenAPI contract
Live Docs¶
When the service is running:
http://YOUR_SERVER_HOST:30110/docshttp://YOUR_SERVER_HOST:30110/openapi.json
Main Routes¶
GET /healthGET /datasetsPOST /queryGET /api/industry/standardsPOST /api/industry/mappingPOST /api/industry/membersPOST /api/daily-pricePOST /api/daily-snapshotPOST /api/financial-snapshot
Important Positioning¶
FastAPI /docs documents the HTTP layer.
The generic POST /query route is still available for internal and low-level use, but the maintained user-facing HTTP surface should prefer the named /api/... routes.
For Python users, the main documentation should still be: