Authentication

All endpoints except /v1/health require HMAC authentication with:

  • x-ledig-key

  • x-ledig-timestamp

  • x-ledig-signature

Signature format:

{timestamp}.{method}.{path_with_query}.{raw_body}

Compute with HMAC-SHA256 using your API secret, base64 encode, and prefix with v1=.

Last updated