Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions modules/express/src/typedRoutes/api/common/ping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ import { BitgoExpressError } from '../../schemas/error';
/**
* Ping
*
* Health check endpoint for BitGo Express. Use this endpoint to verify that the
* Express server is running and responsive before making other API calls.
*
* Common use cases:
* - Load balancer health checks
* - Container orchestration liveness probes (Kubernetes, ECS)
* - Monitoring and alerting systems
* - Pre-flight connectivity validation from client applications
*
* This endpoint requires no authentication and returns an empty 200 response
* when the service is operational.
*
* @operationId express.ping
* @tag express
*/
Expand Down
Loading