Quickstart
Sign up at /app/signup,
create a test API key from the dashboard, then call the analyze
endpoint. The current beta base URL is
https://zygentrust-api.salarylab.workers.dev and all
endpoints live under /v1. Free accounts use self-serve
zt_test_ keys. Paid live access is issued to approved beta customers.
curl "https://zygentrust-api.salarylab.workers.dev/v1/analyze?domain=example.com" \
-H "Authorization: Bearer zt_test_..." const response = await fetch(
"https://zygentrust-api.salarylab.workers.dev/v1/analyze?domain=example.com",
{ headers: { "Authorization": "Bearer zt_test_..." } }
);
const data = await response.json();
console.log(data.trust_score); import requests
response = requests.get(
"https://zygentrust-api.salarylab.workers.dev/v1/analyze?domain=example.com",
headers={"Authorization": "Bearer zt_test_..."}
)
data = response.json()
print(data["trust_score"])