GET
/
v1
/
tenants
/
:tenantId
curl https://api.geldstuck.com/v1/tenants/me \
  -H "x-api-key: $GELDSTUCK_PUBLIC_KEY" \
  -H "x-api-secret: $GELDSTUCK_SECRET_KEY"
{
  "tenantId": "tnt_01HX3Z8MQW...",
  "name": "Acme Escrow",
  "status": "active",
  "metadata": { "region": "eu-west" },
  "createdAt": "2026-04-22T09:12:44.000Z"
}
Returns the tenant identified by tenantId. The currently-authenticated tenant can also use the shortcut GET /v1/tenants/me.

Path parameters

tenantId
string
required
ULID of the tenant.

Returns

A tenant object (no secret fields).
curl https://api.geldstuck.com/v1/tenants/me \
  -H "x-api-key: $GELDSTUCK_PUBLIC_KEY" \
  -H "x-api-secret: $GELDSTUCK_SECRET_KEY"
{
  "tenantId": "tnt_01HX3Z8MQW...",
  "name": "Acme Escrow",
  "status": "active",
  "metadata": { "region": "eu-west" },
  "createdAt": "2026-04-22T09:12:44.000Z"
}