Bowmark AIdocs

Mac trade-in value

Get Mac trade-in credit estimates from Apple Trade In.

Also known as: mac trade-in, mac trade in, mac trade-in estimate, mac trade-in value, trade-in mac, trade in my mac, trade-in macbook, trade in macbook, macbook trade-in, macbook trade in value, mac offers, laptop trade-in, sell my mac, mac buyback, mac resale value, what's my mac worth

Call it

bowmark.mac_trade_in.estimate(model: string, options?: { chip?: string; storage?: string; ram?: string; condition?: string }): Promise<MacTradeInEstimate>

Functions

FunctionWhat it does
estimateGet the Apple Trade In credit value for a Mac model, with optional specs.

Types

interface MacTradeInEstimate {
  model: string;
  chip?: string;
  storage?: string;
  ram?: string;
  condition?: "like_new" | "good" | "fair" | "broken";
  appleTradeInValue: number | null;
  warnings: string[];
}

Examples

const quote = await bowmark.mac_trade_in.estimate("MacBook Pro 16-inch", {
  chip: "M4 Pro",
  storage: "512GB",
  ram: "16GB",
  condition: "good"
});
console.log(`Up to $${quote.appleTradeInValue} credit`);

Providers behind it

Provider
appleApple