Loading…
Loading contentLoading…
Loading contentTyped client libraries for the read-only API. Planned; not yet published.
No SDK is published yet. Because the API is plain JSON over GET, any HTTP client works today — a typed SDK is planned to wrap the envelope and endpoints.
const res = await fetch("https://asteriastar.com/api/v0/entities/planet:mars");
const { meta, data } = await res.json();
console.log(data.name, "—", meta.license);Until an SDK ships, the OpenAPI spec can generate a client in most languages.