ELYDORA
Developers

Build with Elydora.
Ship with confidence.

Integrate responsibility-grade infrastructure into your Agent platform in under 30 minutes. SDKs for Node.js, Python, and Go.

SDKs

Choose your language.

Node.js
$ npm install @elydora/sdk
import { ElydoraClient } from '@elydora/sdk';

const client = new ElydoraClient({
  orgId: 'org_acme',
  agentId: 'agent_underwriter',
  privateKey: process.env.ELYDORA_KEY,
});
Python
$ pip install elydora
from elydora import ElydoraClient

client = ElydoraClient(
    org_id="org_acme",
    agent_id="agent_underwriter",
    private_key=os.environ["ELYDORA_KEY"],
)
Go
$ go get github.com/elydora/sdk-go
import "github.com/elydora/sdk-go"

client, err := elydora.NewClient(&elydora.Config{
    OrgID:      "org_acme",
    AgentID:    "agent_underwriter",
    PrivateKey: os.Getenv("ELYDORA_KEY"),
})
Quick Start

Four steps to production.

From install to verified attestation receipt in minutes. Every operation your agent performs is cryptographically signed, chain-linked, and permanently recorded.

01
Install SDK
npm install @elydora/sdk
02
Initialize Client
import { ElydoraClient } from '@elydora/sdk';

const client = new ElydoraClient({
  orgId: 'org_acme',
  agentId: 'agent_underwriter',
  privateKey: process.env.ELYDORA_KEY,
});
03
Create Operation
const record = client.createOperation({
  type: 'loan.approve',
  payload: { loanId: 'LN-2026-001', amount: 50000 },
});
04
Submit & Get Receipt
const receipt = await client.submitOperation(record);
// receipt.ear → Elydora Attestation Receipt
// receipt.ech → Elydora Chain Hash
API Reference

Key endpoints.

POST/v1/operations
GET/v1/operations/:id
GET/v1/agents/:id
POST/v1/agents
POST/v1/agents/:id/freeze
GET/v1/audit/query
GET/v1/epochs/:id
GET/v1/verify/chain