Skip to main content
GET
/
teams
/
{team_id}
/
coherence-history
Get governance-median coherence history for a team
curl --request GET \
  --url https://api.mnemom.ai/v1/teams/{team_id}/coherence-history \
  --header 'X-Internal-Key: <x-internal-key>'
{
  "team_id": "<string>",
  "governance_median_history": [
    {
      "value": 123,
      "at": "2023-11-07T05:31:56Z"
    }
  ],
  "note": "<string>"
}

Headers

X-Internal-Key
string
required

Internal service-to-service shared secret. Must match the server's INTERNAL_API_KEY value.

Path Parameters

team_id
string
required

Team identifier (UUID)

Response

Governance-median coherence history for the team.

team_id
string
required

The team identifier echoed from the path.

governance_median_history
object[]
required

Time-ordered samples of the governance-median coherence value for the team.

note
string
required

Human-readable note describing the history payload (e.g., data-source caveats).