Amramp
Amramp's own ZIP/postal-code locator — which of its ~58 US/Canada accessibility-equipment franchises covers a given ZIP, and that franchise's own…
Amramp's own ZIP/postal-code locator — which of its ~58 US/Canada accessibility-equipment franchises covers a given ZIP, and that franchise's own quote-request page — read directly from the site's own published data, no browser.
Domain: amramp.com
Also known as: Amramp, amramp.com, AMRAMP
Call it directly
bowmark.providers.amramp.findNearestLocation(input: { zip: string }): Promise<AmrampLocation[]>Functions
| Function | What it does |
|---|---|
findNearestLocation | Runs Amramp's own ZIP/postal-code locator — the same array-membership match the locator page's own JS runs on submit, against the site's ~58-row franchise territory table. zip accepts a US… |
Types
interface AmrampLocation {
/** The franchise's own display name, e.g. "Northeast Wisconsin". */
name: string;
/** That franchise's own site page — carries its Gravity Forms quote-request
* instance. This is the write-step handoff URL; the provider never submits. */
url: string;
}Examples
// which Amramp franchise covers this ZIP, and where do I request a quote?
const matches = await bowmark.providers.amramp.findNearestLocation({ zip: "53703" });
for (const m of matches) log(`${m.name}: ${m.url}`);