SDKs
Not implementedOfficial, typed client libraries that wrap authentication, requests, and the public schemas from @resumez/contracts.
TypeScript
The TypeScript SDK will live at @resumez/sdk and share types with the API contract, so requests and responses are fully typed end to end.
Planned usage
import { Resumez } from "@resumez/sdk";
const resumez = new Resumez({ accessToken: process.env.RESUMEZ_TOKEN });
const profile = await resumez.profile.get();
const resume = await resumez.resumes.generate({
targetRole: "Senior Backend Engineer",
jobDescription: jd
});The SDK package (packages/sdk) has not been published yet. Until then, call the REST API directly — see the API Reference.