Skip to content

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/docs
  • http://YOUR_SERVER_HOST:30110/openapi.json

Main Routes

  • GET /health
  • GET /datasets
  • POST /query
  • GET /api/industry/standards
  • POST /api/industry/mapping
  • POST /api/industry/members
  • POST /api/daily-price
  • POST /api/daily-snapshot
  • POST /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: