SellCell
Reads SellCell's own live buyback price-comparison table directly — every vendor's current cash offer for one iPhone model/storage/condition,…
Reads SellCell's own live buyback price-comparison table directly — every vendor's current cash offer for one iPhone model/storage/condition, price-descending, straight from the site's own comparison-refresh endpoint.
Domain: sellcell.com
Also known as: SellCell, sellcell.com
Prefer the capability
bowmark.phone_trade_in covers this provider and routes around it when it is having a bad day. Reach for this page when you need sellcell.com specifically.
Call it directly
bowmark.providers.sellcell.getTradeInOffers(model: string, storage: string, condition: "new" | "working" | "poor" | "broken"): Promise<SellcellTradeInOffers>Functions
| Function | What it does |
|---|---|
getTradeInOffers | Runs SellCell's own live comparison for one iPhone — model slug (e.g. "iphone-14-pro", from sellcell.com/phones/apple-<model>/), storage (e.g. "256GB") and condition ("new"=MINT,… |
Types
interface SellcellTradeInOffer {
merchant: string;
price: number;
paymentMethods: string[];
paymentPeriod: string | null;
freeShipping: boolean;
}
interface SellcellTradeInOffers {
model: string;
storage: string;
condition: "new" | "working" | "poor" | "broken";
offers: SellcellTradeInOffer[];
}Related
phone_trade_in | Phone trade-in value — the capability this provider backs. |
apple | Also backs the same capability. |