Integrate Zenithdata with your existing tools and workflows using our comprehensive APIs.
https://api.zenithdata.com/v1RESTful endpoints for managing assets, policies, lineage, and governance workflows.
Flexible queries for complex data relationships and lineage traversal.
Real-time event notifications for governance changes and alerts.
Official client libraries for Python, Node.js, Go, and Java.
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/assets | List all assets |
| POST | /api/v1/assets | Create a new asset |
| GET | /api/v1/assets/{id} | Get asset by ID |
| GET | /api/v1/lineage/{id} | Get lineage for asset |
| GET | /api/v1/policies | List all policies |
| POST | /api/v1/quality/rules | Create quality rule |
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"