API Reference

Zenithdata API

Integrate Zenithdata with your existing tools and workflows using our comprehensive APIs.

Base URL:https://api.zenithdata.com/v1

Quick Reference

MethodEndpointDescription
GET/api/v1/assetsList all assets
POST/api/v1/assetsCreate a new asset
GET/api/v1/assets/{id}Get asset by ID
GET/api/v1/lineage/{id}Get lineage for asset
GET/api/v1/policiesList all policies
POST/api/v1/quality/rulesCreate quality rule

Authentication

All API requests require authentication using a Bearer token. You can generate API tokens in the Zenithdata dashboard under Settings → API Tokens.

# Example request with authentication
curl -X GET https://api.zenithdata.com/v1/assets \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json"