Quickstart
Get an API key, install an SDK, and make your first authenticated call to Hyper Solutions in a few minutes.
1. Get your API key
2. Install an SDK
go get github.com/Hyper-Solutions/hyper-sdk-go/v2pip install hyper-sdknpm install hyper-sdk-js3. Construct a session
import hyper "github.com/Hyper-Solutions/hyper-sdk-go/v2"
session := hyper.NewSession("your-api-key")from hyper_sdk import Session
session = Session("your-api-key")import { Session } from "hyper-sdk-js";
const session = new Session("your-api-key");4. Confirm your key works
curl https://ip.hypersolutions.co/ip -H "x-api-key: your-api-key"{ "ip": "1.2.3.4" }5. Bypass your first site
Last updated

