Calls signed
100%
Every request carries a verifiable signature.
One job: register an endpoint and every request through it is signed, logged, and rate-shaped with rotating keys — provable protection on legacy APIs.
With an API key this calls the live POST /v1/apiguard/register endpoint and returns the sealed response. Without one it shows a representative sealed payload so you can see the shape.
from epochcore_app_primitives import Client with Client(api_key="...") as c: g = c.apiguard.register(target_url="https://internal.acme/api", policies={"rate_limit":1000,"require_signature":True}) print(c.apiguard.stats(g["guard_id"]))