Go SDK
Coming soon. A Go 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:
req, _ := http.NewRequest("GET", "https://api.filedgr.network/vaults", nil)
req.Header.Set("x-api-key", os.Getenv("FILEDGR_API_KEY"))
req.Header.Set("x-api-secret", os.Getenv("FILEDGR_API_SECRET"))
resp, err := http.DefaultClient.Do(req)
// A 204 means an empty list, with no body to decode.
See SDKs for a fuller wrapper, Quick Start for an end-to-end walkthrough, and the API Reference for every endpoint.