GET/api/v1/compliance/posture/changelog

Compliance posture changelog (deltas only)

Returns a 'what's changed' timeline derived from compliance_posture_snapshots — only adjacent-day deltas where coverage_pct or indicator changed are surfaced. Different from /history (full series). Auditor-friendly: 'show me when our SOC 2 dropped over the last quarter' resolves to one call.

Authentication

Send Authorization: Bearer YOUR_API_KEY on every request. Generate API keys at /dashboard/api-keys.

Parameters

orgId in queryrequired
string
framework in query
string
from in query
string
to in query
string
limit in query
integer

Response

200 example

{
  "success": true
}

All status codes

200Changelog entries (improved / regressed / indicator-changed) with summary counts.
400Invalid params.

Code samples

cURL

curl -X GET \
  https://evalguard.ai/api/v1/compliance/posture/changelog \
  -H "Authorization: Bearer $EVALGUARD_API_KEY" \

TypeScript

import { EvalGuard } from "@evalguard/sdk";

const client = new EvalGuard({ apiKey: process.env.EVALGUARD_API_KEY });

const response = await client.request({
  method: "GET",
  path: "/api/v1/compliance/posture/changelog",
});
console.log(response);

Python

from evalguard import EvalGuard
import os

client = EvalGuard(api_key=os.environ["EVALGUARD_API_KEY"])

response = client.request(method="GET", path="/api/v1/compliance/posture/changelog")
print(response)

Go

package main

import (
	"context"
	"fmt"
	"os"

	"github.com/evalguard/evalguard-go"
)

func main() {
	client := evalguard.NewClient(os.Getenv("EVALGUARD_API_KEY"))
	resp, err := client.Request(context.Background(), "GET", "/api/v1/compliance/posture/changelog", nil)
	if err != nil { panic(err) }
	fmt.Println(resp)
}

Errors

400

Other Compliance endpoints