Loading...
Loading...
Get started with the StorageD API in under 30 seconds.
Sign up for free at /signup. No credit card required. You get 500 API requests per day with all 32 data fields.
Create Free AccountGo to Dashboard → API Keysand click “Create Key”. Your key will look like:
sk_live_a1b2c3d4e5f6g7h8i9j0...Save this key securely. It will only be shown once.
curl -H "X-API-Key: sk_live_YOUR_KEY" \ "https://api.storaged.io/gw/v1/domains/example.com"
import requests
r = requests.get(
"https://api.storaged.io/gw/v1/domains/shopify.com",
headers={"X-API-Key": "sk_live_YOUR_KEY"}
)
d = r.json()
print(f"{d['domain']}: {d['cms_name']} on {d['web_server_name']}")
# shopify.com: Shopify on nginxconst res = await fetch(
"https://api.storaged.io/gw/v1/domains/shopify.com",
{ headers: { "X-API-Key": "sk_live_YOUR_KEY" } }
);
const data = await res.json();
console.log(`${data.domain}: ${data.cms_name} on ${data.web_server_name}`);
// shopify.com: Shopify on nginxpackage main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET",
"https://api.storaged.io/gw/v1/domains/shopify.com", nil)
req.Header.Set("X-API-Key", "sk_live_YOUR_KEY")
resp, _ := http.DefaultClient.Do(req)
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}X-API-Key: sk_live_...?api_key=sk_live_...Authorization: Bearer <jwt_token>