Meta

get

Returns the backend's meta information.

Authorizations
Responses
application/json
objectOptional

Contains backend run-time info: statistics along with build information.

get
GET /api/v1/meta-info HTTP/1.1
Host: api.example.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "version": "text",
  "build_id": "text",
  "backend_build_id": "text",
  "ui_build_id": "text",
  "goos": "text",
  "goarch": "text",
  "started_at": "2025-04-22T05:50:27.618Z",
  "memstats_alloc": 1,
  "memstats_sys": 1,
  "gc_cpu_fraction": 1,
  "num_goroutine": 1
}

Last updated

Was this helpful?