Skip to main content
Returns comprehensive information about the running service instance, including build details, git information, and deployment time.

Endpoint

GET /about

Response

Returns an AboutRepresentation object containing build and deployment metadata.

Response Fields

appName
string
The name of the application
buildNumber
string
The build number from the CI/CD pipeline
buildTime
string
The timestamp when the application was built
deployTime
string
The timestamp when the service was deployed (ISO 8601 format with timezone)
gitRevision
string
The git commit hash of the deployed version
gitBranch
string
The git branch from which the service was built
environment
string
The active Spring profiles (environment configuration)

Example Response

{
  "appName": "ecommerce-order-service",
  "buildNumber": "123",
  "buildTime": "2026-03-04T10:30:00Z",
  "deployTime": "2026-03-04T12:00:00+00:00",
  "gitRevision": "a1b2c3d4e5f6",
  "gitBranch": "main",
  "environment": "[production]"
}

Use Cases

  • Health monitoring and service discovery
  • Debugging and troubleshooting deployments
  • Verifying which version is running in an environment
  • Audit trails for deployment tracking

Build docs developers (and LLMs) love