SDKs
Official Derapi client libraries.
Type-safe clients for Python, Node.js, and Go. Or call the REST API directly with cURL or any HTTP client.
Python SDK
derapi-python · v0.4.2
pip install derapi
import derapi
client = derapi.Client("sk_sandbox_...")
data = client.ders.interconnect(zip="97205")
Node.js SDK
@derapi/node · v0.4.1
npm install @derapi/node
import Derapi from '@derapi/node'
const client = new Derapi("sk_sandbox_...")
const data = await client.ders.interconnect({zip: "97205"})
Go SDK
github.com/getderapi/derapi-go · v0.3.0
go get github.com/getderapi/derapi-go
client := derapi.New("sk_sandbox_...")
data, err := client.DERs.Interconnect(
&derapi.InterconnectParams{ZIP: "97205"})
All SDKs on GitHub
Source code, changelogs, and contribution guides for all three SDKs are available on GitHub under the getderapi organization.