Secure by default
OAuth 2.0 + fine‑grained API keys, IP allow‑listing, and audit logs built in.
Ship faster with reliable JSON endpoints, rock‑solid auth, and world‑class docs. Join the waitlist for early access and launch updates.
OAuth 2.0 + fine‑grained API keys, IP allow‑listing, and audit logs built in.
Simple, predictable shapes with error codes you can rely on.
Edge‑cached read endpoints, 99.9% uptime target, global PoPs.
Here’s how the first call will look once live. Swap the sample key with yours.
curl -X POST https://api.acmemicro.net/v1/api \
-H "Authorization: Bearer sk_test_123" \
-H "Content-Type: application/json" \
-d '{"name":"Ada"}'
import fetch from "node-fetch";
const res = await fetch("https://api.acmemicro.net/v1/api", {
method: "POST",
headers: {
"Authorization": "Bearer sk_test_123",
"Content-Type": "application/json"
},
body: JSON.stringify({ name: "Ada" })
});
console.log(await res.json());
import requests
r = requests.post(
"https://api.acmemicro.net/v1/api",
headers={
"Authorization": "Bearer sk_test_123",
"Content-Type": "application/json"
},
json={"name": "Ada"}
)
print(r.json())