Back to API

SDKs

Official client libraries for popular languages.

Available SDKs

  • Python: pip install zenithdata
  • Node.js: npm install @zenithdata/client
  • Go: go get github.com/zenithdata/go-client

Python Example

from zenithdata import Client

client = Client(api_key="your_api_key")

# Search assets
assets = client.assets.search("customer")

# Get lineage
lineage = client.lineage.get("table_123")

Node.js Example

import { Zenithdata } from '@zenithdata/client';

const client = new Zenithdata({ apiKey: 'your_api_key' });

const assets = await client.assets.search('customer');