Python SDK
Install nodura-sdk and initialize the client with your API URL and key.
pip install nodura-sdkfrom nodura import NoduraClient, AuthType
client = NoduraClient(config={
"base_url": "http://localhost:3000/api",
"auth": {"type": AuthType.API_KEY, "api_key": "YOUR_API_TOKEN"}
})
health = client.health_sync()
print('API status:', health.get('status'))