For the complete documentation index, see llms.txt. This page is also available as Markdown.

Geofence

GetGeofenceStatus returns the geofence status for the calling client

get
/geofence/v1/status

Resolves the caller's country from the edge-provided header and reports whether geofenced endpoints are barred, together with the full list of geofenced endpoints so the client can gate navigation before the user hits a 403

Responses
200

A successful response.

application/json
countrystringOptional
get/geofence/v1/status
GET /geofence/v1/status HTTP/1.1
Host: backend.pay.kiichain.io
Accept: */*
{
  "country": "text",
  "endpoints": [
    {
      "blocked": true,
      "method": "text",
      "path": "text"
    }
  ]
}

Last updated