For Developers

Build on the Universal Context Layer

GraphQL and REST APIs. TypeScript and C# SDKs. Open-source core with MIT licence. Everything you need to integrate sovereign AI context into your applications.

GraphQL Quick Start

Get context facts for any entity in three lines:

query GetContext($entityId: ID!) {
  contextSnapshot(entityId: $entityId) {
    facts {
      attribute { key label }
      value
      confidence
      provenance { sourceSystem fieldPath timestamp }
    }
  }
}

TypeScript SDK

import { ContextLayerClient } from '@contextlayer/sdk';

const client = new ContextLayerClient({
  baseUrl: 'https://api.kynticai.com',
  apiKey: process.env.KYNTIC_API_KEY,
});

const snapshot = await client.getContextSnapshot('entity-123');
console.log(snapshot.facts);

C# SDK

using ContextLayer.Sdk;

var client = new ContextLayerClient(new ClientOptions
{
    BaseUrl = "https://api.kynticai.com",
    ApiKey = Environment.GetEnvironmentVariable("KYNTIC_API_KEY"),
});

var snapshot = await client.GetContextSnapshotAsync("entity-123");
foreach (var fact in snapshot.Facts)
    Console.WriteLine($"{fact.Attribute.Key}: {fact.Value} ({fact.Confidence:P0})");

Open Source vs Enterprise

FeatureScout (Free)Enterprise
Core selector engine
Context facts + snapshots
GraphQL + REST API
React admin console
SQLite connector
TypeScript + C# SDKs
SQL Server / PostgreSQL connectors
CRM connectors (Salesforce, HubSpot)
Identity (OIDC, SCIM, SAML)
Governance + compliance exports
Credential vaults
Embedded AI models
Discovery Agent
Helm charts + air-gapped deploy

Start Building Today

Clone the open-source repo, run the demo, and start building in minutes.