Python SDK
Coming soon. A Python client library for the Filedgr API is on the roadmap.
In the meantime you can build against the REST API directly — it is plain JSON over HTTPS with two auth headers, so any HTTP client gets you there in a few lines:
import os, requests
resp = requests.get(
"https://api.filedgr.network/vaults",
headers={
"x-api-key": os.environ["FILEDGR_API_KEY"],
"x-api-secret": os.environ["FILEDGR_API_SECRET"],
},
timeout=30,
)
vaults = [] if resp.status_code == 204 else resp.json()["content"]
See SDKs for a fuller wrapper, Quick Start for an end-to-end walkthrough, and the API Reference for every endpoint.