Skip to main content
GET
Build version
Returns the build identifier of the running API and the gateway mode it was booted with. No authentication is required, and it touches no dependencies, so it is also the cheapest request for a smoke test or a load-test baseline. Use it to confirm which build a deploy landed and to check whether an instance is in test or live mode before you create real charges (see Testing). For dependency health, use Get Health.

Example Request

Response

Returned bare — no data envelope.

Fields

gateway_mode is what the dashboard’s “Test mode” chip reads. It also decides which API keys the instance accepts: live keys require a live server, test keys require a non-live one — a mismatch is rejected with key_mode_mismatch on every authenticated route.

Errors

This endpoint has no failure modes of its own and always returns 200.

Authorizations

Authorization
string
header
required

Response

200 - application/json

The running build version.

version
string
gateway_mode
enum<string>

Whether the configured payment gateways use test or live keys.

Available options:
test,
live,
none
Examples:

"dev"

"v0.1.0"