Skip to content
PesaGuard Docs

SDKs

SDKs Planned

There are no official PesaGuard SDKs yet. The OpenAPI document is the integration surface; any HTTP client works.

GETgenerate a client
curl -sS "$PESAGUARD_API_URL/openapi.json" -o openapi.json
# example: generate a Python client
npx @openapitools/openapi-generator-cli generate \
  -i openapi.json -g python -o ./client

Official clients (Python, TypeScript, JavaScript) will follow once the v1 contract is verified in production. A client generated from the published spec is the supported path until then.

Related